Beispiel #1
0
 public RoomService(IRoomRepository repository, IRenovationService renovationService, IBusinessDayService businessDayService, IHospitalizationService hospitalizationService)
 {
     _repository                 = repository;
     this.renovationService      = renovationService;
     this.businessDayService     = businessDayService;
     this.hospitalizationService = hospitalizationService;
 }
 public DoctorService(IDoctorRepository doctorRepository, IDoctorGradeService doctorGradeService, IBusinessDayService businessDayService, IArticleService articleService)
 {
     _doctorRepository   = doctorRepository;
     _doctorGradeService = doctorGradeService;
     _businessDayService = businessDayService;
     _articleService     = articleService;
 }
 public NotificationService(IDrugService drugService, IBusinessDayService businessDayService)
 {
     this.drugService        = drugService;
     this.businessDayService = businessDayService;
 }
Beispiel #4
0
 public BusinessDayController(IBusinessDayService _service)
 {
     _businessDayService = _service;
 }