public ValidationMedicationService(IValidationMedicationRepository validationMedicationRepository, NotificationService notificationService)
 {
     this.validationMedicationRepository = validationMedicationRepository;
     this.notificationService            = notificationService;
 }
 public MedicationService(IMedicationRepository medicationRepository, IValidationMedicationRepository validationMedicationRepository)
 {
     this.validationMedicationRepository = validationMedicationRepository;
     this.medicationRepository           = medicationRepository;
 }