public ReportService(IReportRepository reportRepository, ITreatmentRepository treatmentRepository,
                      IMedicationRepository medicationRepository, IExaminationSurgeryRepository examinationSurgeryRepository,
                      IRoomRepository roomRepository)
 {
     this.reportRepository             = reportRepository;
     this.treatmentRepository          = treatmentRepository;
     this.medicationRepository         = medicationRepository;
     this.examinationSurgeryRepository = examinationSurgeryRepository;
     this.roomRepository = roomRepository;
 }
Beispiel #2
0
 public ExaminationSurgeryService(IExaminationSurgeryRepository examinationSurgeryRepository)
 {
     this.examinationSurgeryRepository = examinationSurgeryRepository;
 }