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
@@ -14,6 +14,13 @@ using MongoDB.Driver;
namespace adas_core.Application.Services;
/// <summary>
/// Implements <see cref="IMedicineService"/> and provides the application service responsible for medicine-related operations, coordinating <see cref="IMedicineRepository"/> and <see cref="ITreatmentService"/>.
/// </summary>
/// <remarks>
/// Configured via <see cref="IOptions{ApiSettings}"/>, instrumented with <see cref="ILogger{MedicineService}"/>, supplied with the current HTTP context through <see cref="IHttpContextAccessor"/>, and audited by <see cref="ILocalAuditService"/>.
/// </remarks>
/// <!-- aidoc:v1 sig=34a02a6 -->
public class MedicineService(
IMedicineRepository medicineRepository,
ITreatmentService treatmentService,