public PatientsController(IRequestService requests, IPatientService patients, IDentistService dentists, IMedicalRecordService medicalRecords) { this.requests = requests; this.patients = patients; this.dentists = dentists; this.medicalRecords = medicalRecords; }
public UserController(IUserServices userServices, IMapper mapper, IAdminService adminServices, IDentistService dentistServices) { _userServices = userServices; _adminServices = adminServices; _dentistServices = dentistServices; _mapper = mapper; }
public DentistController(IDentistService dentistService, ISpecialtyService specialtyService, IClinicService clinicService, IRatingService ratingService) { this._dentistService = dentistService; this._specialtyService = specialtyService; this._clinicService = clinicService; this._ratingService = ratingService; }
public PatientController(UserManager <DentHubUser> userManager, IDentistService dentistService, IRepository <Appointment> appointmentRepository, IRatingService ratingService) { this._userManager = userManager; this._dentistService = dentistService; this._appointmentRepository = appointmentRepository; this._ratingService = ratingService; }
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; }
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; }
public SchedulingController(INotifier notifier, ISchedulingService schedulingService, IDentistService dentistService, IPatientService patientService, UserManager <IdentityUser> userManager) : base(notifier) { _schedulingService = schedulingService; _dentistService = dentistService; _patientService = patientService; _userManager = userManager; }
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; }
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; }
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; }
public DentistController(IDentistService service) { _service = service; }
public DentistController(INotifier notifier, IDentistService dentistService) : base(notifier) { _dentistService = dentistService; }
public AutoCompleteController(IDentistService dentists) { this.dentists = dentists; }
public DentistController(ApplicationUserManager userManager, ApplicationDbContext dbContext, IDentistService dentistService) { this.userManager = userManager; this.dbContext = dbContext; this.dentistService = dentistService; }
public DentistController(IDentistService dentistServices, IMapper mapper, IUserServices userServices) { _dentistServices = dentistServices; _userServices = userServices; _mapper = mapper; }
public DentistController(IDentistService dentist) { _dentist = dentist; }