public HomeController(ILocationService locationService, ISpecialityService specialityService, IDoctorProfileService doctorService, ICampaignService campaignService) { _locationService = locationService; _specialityService = specialityService; _doctorService = doctorService; _campaignService = campaignService; }
public DoctorController(IPatientProfileService patientProfileService, IPrescriptionService prescriptionService, IMedicineForPrescriptionService medicineForPrescriptionService, IMedicalTestService medicalTestService, IPatientsConsultService patientsConsultService, IPatientConsultSingleService patientConsultSingleService, IPatientsProblemPageForDoctorService patientProblemService, IDoctorProfileService doctorProblemService) { _patientProfileService = patientProfileService; _prescriptionService = prescriptionService; _medicineForPrescriptionService = medicineForPrescriptionService; _medicalTestService = medicalTestService; _patientsConsultService = patientsConsultService; _patientConsultSingleService = patientConsultSingleService; _patientProblemService = patientProblemService; _doctorProfileService = doctorProblemService; }
public PatientController(ISpecialityService specialityService, IPatientProfileService patientProfileService, IDoctorProfileService doctorProfileService, IPatientsConsultService consultService, IPatientsConsultService patientsConsultService, IPrescriptionService prescriptionService, IMedicalTestService testService, IMedicineForPrescriptionService medicineForPrescriptionService, IPatientsProblemPageForDoctorService patientsProblemPageForDoctorService) { _specialityService = specialityService; _patientProfileService = patientProfileService; _doctorProfileService = doctorProfileService; _consultService = consultService; _patientsConsultService = patientsConsultService; _prescriptionService = prescriptionService; _testService = testService; _medicineForPrescriptionService = medicineForPrescriptionService; _patientsProblemPageForDoctorService = patientsProblemPageForDoctorService; }
public AccountController(IPatientProfileService patientProfileService, IDoctorProfileService doctorProfileService) { _patientProfileService = patientProfileService; _doctorProfileService = doctorProfileService; _helper = new Helper(); }