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
@@ -8,6 +8,13 @@ using adas_core.Domain.Utils;
namespace adas_core.Application.Services;
/// <summary>
/// Provides a demo implementation of <see cref="IObservationDemoService"/> that coordinates observation handling using <see cref="IConfigObservationService"/> for configuration and a <see cref="Lazy{T}"/> of <see cref="IAlarmService"/> for deferred alarm access.
/// </summary>
/// <remarks>
/// The service is constructed with an <see cref="IConfigObservationService"/> for observation configuration and a lazily-initialized <see cref="IAlarmService"/> so that alarm functionality is created only on first use.
/// </remarks>
/// <!-- aidoc:v1 sig=fc27ac9 -->
public class ObservationDemoService(
IConfigObservationService configObservationService,
Lazy<IAlarmService> alarmService)