Пример #1
0
 public TreatmentsController(
     ITreatmentsService service,
     IPetCenterService petCenterService)
 {
     this.treatmentService = service;
     this.petCenterService = petCenterService;
 }
 public HospitalizationsService(HealthDbContext db,
                                IExaminationsService examinationsService,
                                ITreatmentsService treatmentsService)
 {
     this.db = db;
     this.examinationsService = examinationsService;
     this.treatmentsService   = treatmentsService;
 }