public PatientsController(IRequestService requests, IPatientService patients, IDentistService dentists, IMedicalRecordService medicalRecords)
 {
     this.requests = requests;
     this.patients = patients;
     this.dentists = dentists;
     this.medicalRecords = medicalRecords;
 }
예제 #2
0
 public UserController(IUserServices userServices, IMapper mapper, IAdminService adminServices, IDentistService dentistServices)
 {
     _userServices = userServices;
     _adminServices = adminServices;
     _dentistServices = dentistServices;
     _mapper = mapper;
 }
예제 #3
0
 public PatientsController(IRequestService requests, IPatientService patients, IDentistService dentists, IMedicalRecordService medicalRecords)
 {
     this.requests       = requests;
     this.patients       = patients;
     this.dentists       = dentists;
     this.medicalRecords = medicalRecords;
 }
예제 #4
0
 public DentistController(IDentistService dentistService,
                          ISpecialtyService specialtyService,
                          IClinicService clinicService,
                          IRatingService ratingService)
 {
     this._dentistService   = dentistService;
     this._specialtyService = specialtyService;
     this._clinicService    = clinicService;
     this._ratingService    = ratingService;
 }
예제 #5
0
 public PatientController(UserManager <DentHubUser> userManager,
                          IDentistService dentistService,
                          IRepository <Appointment> appointmentRepository,
                          IRatingService ratingService)
 {
     this._userManager           = userManager;
     this._dentistService        = dentistService;
     this._appointmentRepository = appointmentRepository;
     this._ratingService         = ratingService;
 }
예제 #6
0
 public RatingController(IDentistService dentistService,
                         UserManager <DentHubUser> userManager,
                         IRatingService ratingService,
                         IAppointmentService appointmentService,
                         IPatientService patientService)
 {
     this._userManager        = userManager;
     this._dentistService     = dentistService;
     this._appointmentService = appointmentService;
     this._ratingService      = ratingService;
     this._patientService     = patientService;
 }
예제 #7
0
 public ClinicController(IClinicService clinicService,
                         IDentistService dentistService,
                         IAppointmentService appointmentService,
                         ISpecialtyService specialtyService,
                         IRatingService ratingService)
 {
     this._clinicService      = clinicService;
     this._dentistService     = dentistService;
     this._appointmentService = appointmentService;
     this._specialtyService   = specialtyService;
     this._ratingService      = ratingService;
 }
예제 #8
0
 public SchedulingController(INotifier notifier,
                             ISchedulingService schedulingService,
                             IDentistService dentistService,
                             IPatientService patientService,
                             UserManager <IdentityUser> userManager)
     : base(notifier)
 {
     _schedulingService = schedulingService;
     _dentistService    = dentistService;
     _patientService    = patientService;
     _userManager       = userManager;
 }
예제 #9
0
 public AppointmentController(IClinicService clinicService,
                              //IRepository<DentHubUser> userRepository,
                              UserManager <DentHubUser> userManager,
                              IAppointmentService appointmentService,
                              IDentistService dentistService,
                              IPatientService patientService)
 {
     this._userManager   = userManager;
     this._clinicService = clinicService;
     //this._userRepository = userRepository;
     this._appointmentService = appointmentService;
     this._dentistService     = dentistService;
     this._patientService     = patientService;
 }
예제 #10
0
 public SchedulingService(IUnitOfWork unitOfWork,
                          INotifier notifier,
                          UserManager <IdentityUser> userManager,
                          ISchedulingRepository schedulingRepository,
                          IDentistService dentistService,
                          IPatientService patientService,
                          IDentistRepository dentistRepository,
                          IPatientRepository patientRepository,
                          IAttendantRepository attendantRepository)
     : base(unitOfWork, notifier, userManager)
 {
     _schedulingRepository = schedulingRepository;
     _dentistService       = dentistService;
     _patientService       = patientService;
     _dentistRepository    = dentistRepository;
     _patientRepository    = patientRepository;
     _attendantRepository  = attendantRepository;
 }
예제 #11
0
 public MedicalChartController(
     IMedicalChartService medicalChartService,
     IPatientService <PatientDTO> patientService,
     IAllergyService allergyService,
     IFileService fileService,
     ITreatmentHistoryService treatmentHistoryService,
     ITreatmentService <TreatmentDTO> treatmentService,
     IDentistService dentistService
     )
 {
     _medicalChartService     = medicalChartService;
     _patientService          = patientService;
     _allergyService          = allergyService;
     _fileService             = fileService;
     _treatmentHistoryService = treatmentHistoryService;
     _treatmentService        = treatmentService;
     _dentistService          = dentistService;
 }
예제 #12
0
 public DentistController(IDentistService service)
 {
     _service = service;
 }
예제 #13
0
 public DentistController(INotifier notifier, IDentistService dentistService)
     : base(notifier)
 {
     _dentistService = dentistService;
 }
 public AutoCompleteController(IDentistService dentists)
 {
     this.dentists = dentists;
 }
예제 #15
0
 public DentistController(ApplicationUserManager userManager, ApplicationDbContext dbContext, IDentistService dentistService)
 {
     this.userManager    = userManager;
     this.dbContext      = dbContext;
     this.dentistService = dentistService;
 }
예제 #16
0
 public DentistController(IDentistService dentistServices, IMapper mapper, IUserServices userServices)
 {
     _dentistServices = dentistServices;
     _userServices    = userServices;
     _mapper          = mapper;
 }
예제 #17
0
 public AutoCompleteController(IDentistService dentists)
 {
     this.dentists = dentists;
 }
예제 #18
0
 public DentistController(IDentistService dentist)
 {
     _dentist = dentist;
 }