示例#1
0
 public DoctorController(
     DoctorAppService doctorAppService,
     AccountAppService accountAppService,
     GeneralAppService generalAppService,
     IHttpContextAccessor httpContextAccessor,
     Doctor_DoctorServiceAppService doctor_DoctorServiceAppService,
     DoctorSubSpecializationAppService doctorSubSpecialization,
     ClinicAppService clinicAppService,
     ClinicImagesAppService clinicImagesAppService,
     AreaAppService areaAppService,
     CityAppService cityAppService,
     WorkingDayAppService workingDayAppService,
     DayShiftAppService dayShiftAppService,
     RatingAppService ratingAppService,
     ReservationAppService reservationAppService)
 {
     _doctorAppService               = doctorAppService;
     _accountAppService              = accountAppService;
     _generalAppService              = generalAppService;
     _httpContextAccessor            = httpContextAccessor;
     _doctor_DoctorServiceAppService = doctor_DoctorServiceAppService;
     _doctorSubSpecialization        = doctorSubSpecialization;
     _clinicAppService               = clinicAppService;
     _clinicImagesAppService         = clinicImagesAppService;
     _areaAppService        = areaAppService;
     _cityAppService        = cityAppService;
     _workingDayAppService  = workingDayAppService;
     _dayShiftAppService    = dayShiftAppService;
     _ratingAppService      = ratingAppService;
     _reservationAppService = reservationAppService;
 }
示例#2
0
 public WorkingDayController(
     WorkingDayAppService workingDayAppService,
     GeneralAppService generalAppService,
     DayShiftAppService dayShiftAppService)
 {
     _workingDayAppService = workingDayAppService;
     _generalAppService    = generalAppService;
     _dayShiftAppService   = dayShiftAppService;
 }
示例#3
0
 public DayShiftController(GeneralAppService generalAppService, DayShiftAppService dayShiftAppService)
 {
     _generalAppService  = generalAppService;
     _dayShiftAppService = dayShiftAppService;
 }