Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -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)