Documentation modifications
This commit is contained in:
@@ -7,6 +7,13 @@ using Serilog;
|
||||
|
||||
namespace adas_core.Application.Providers;
|
||||
|
||||
/// <summary>
|
||||
/// Represents an ADAS (Advanced Driver Assistance Systems) data provider that retrieves driver assistance observations through the shared infrastructure defined by <see cref="BaseProvider"/>.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The constructor forwards the supplied <paramref name="providerSettings"/> of type <see cref="IOptions{ProvidersSettings}"/> and the <paramref name="httpClientFactory"/> of type <see cref="IHttpClientFactory"/> to <see cref="BaseProvider"/>, ensuring consistent configuration and HTTP client management across all providers.
|
||||
/// </remarks>
|
||||
/// <!-- aidoc:v1 sig=42c9a02 -->
|
||||
public class AdasProvider(IOptions<ProvidersSettings> providerSettings, IHttpClientFactory httpClientFactory)
|
||||
: BaseProvider(providerSettings, httpClientFactory)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user