예제 #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 ReservationController(ReservationAppService reservationAppService, GeneralAppService generalAppService, IHttpContextAccessor httpContextAccessor)
 {
     _reservationAppService = reservationAppService;
     _generalAppService     = generalAppService;
     _httpContextAccessor   = httpContextAccessor;
 }