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
@@ -21,6 +21,12 @@ public class PoCMappingService : IPoCMappingService
private PoCMapping? _mapping;
private DateTime _nextRefresh = DateTime.MinValue;
/// <summary>
/// Initializes a new instance of the <see cref="PoCMappingService"/> class, storing the supplied repository and capturing point-of-care mapping configuration values from <paramref name="apiSettings"/>.
/// </summary>
/// <param name="pocMappingRepository">The <see cref="IPoCMappingRepository"/> used by the service to access mapping data.</param>
/// <param name="apiSettings">The <see cref="IOptions{ApiSettings}"/> providing access to the point-of-care mapping settings.</param>
/// <!-- aidoc:v1 sig=3865e0c body=4a11e38 -->
public PoCMappingService(IPoCMappingRepository pocMappingRepository, IOptions<ApiSettings> apiSettings)
{
_pocMappingRepository = pocMappingRepository;