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)
|
||||
{
|
||||
|
||||
@@ -5,6 +5,10 @@ using Microsoft.Extensions.Options;
|
||||
|
||||
namespace adas_core.Application.Providers;
|
||||
|
||||
/// <summary>
|
||||
/// Provides an abstract base class for provider implementations that consume configuration through <see cref="IOptions{ProvidersSettings}"/> and create HTTP clients via <see cref="IHttpClientFactory"/>.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=e744862 -->
|
||||
public abstract class BaseProvider(
|
||||
IOptions<ProvidersSettings> providerSettings,
|
||||
IHttpClientFactory httpClientFactory)
|
||||
|
||||
Reference in New Issue
Block a user