Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public ClinicController(ClinicAppService clinicAppService, GeneralAppService generalAppService,
                         ClinicImagesAppService clinicImagesAppService,
                         ClinicClinicServiceAppService clinicClinicServiceAppService,
                         IHttpContextAccessor httpContextAccessor)
 {
     _clinicAppService              = clinicAppService;
     _generalAppService             = generalAppService;
     _clinicImagesAppService        = clinicImagesAppService;
     _httpContextAccessor           = httpContextAccessor;
     _clinicClinicServiceAppService = clinicClinicServiceAppService;
 }
Ejemplo n.º 3
0
 public ClinicImageController(GeneralAppService generalAppService, IHttpContextAccessor httpContextAccessor, ClinicImagesAppService clinicImagesAppService)
 {
     _generalAppService      = generalAppService;
     _clinicImagesAppService = clinicImagesAppService;
     _httpContextAccessor    = httpContextAccessor;
 }