Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MedicationStatementController"/> class.
 /// </summary>
 /// <param name="medicationStatementService">The injected medication data service.</param>
 public MedicationStatementController(IMedicationStatementService medicationStatementService)
 {
     this.medicationStatementService = medicationStatementService;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MedicationStatementController"/> class.
 /// </summary>
 /// <param name="configuration">The injected configuration provider.</param>
 /// <param name="medicationStatementService">The injected medication data service.</param>
 public MedicationStatementController(IConfiguration configuration, IMedicationStatementService medicationStatementService)
 {
     this.medicationStatementService = medicationStatementService;
     this.configuration = configuration;
 }