public PrescriptionController(IPrescriptionServices prescriptionServices, IUnitOfWork unitOfWork, IPatientRecordServices patientRecordServices, IPatientServices patientServices) { _prescriptionServices = prescriptionServices; _unitOfWork = unitOfWork; _patientRecordServices = patientRecordServices; _patientServices = patientServices; }
public PatientMedicalRecordController(IPatientRecordServices patientrecordservices, IPatientServices patientservices, IUnitOfWork unitOfWork, IPrescriptionServices prescriptionServices, IPhyPrescriptionServices phyPrescriptionServices) { _patientrecordservices = patientrecordservices; _patientservices = patientservices; _unitOfWork = unitOfWork; _prescriptionServices = prescriptionServices; _phyPrescriptionServices = phyPrescriptionServices; }
// GET: PatientRecord public PatientRecordController(IUnitOfWork unitofwork, IPatientRecordServices patientrecordservices, IPatientServices patientservices, IPrescriptionServices prescriptionServices, IAppointmentServices appointmentservices, IUserPhysicianService userphysicianservices) { _unitofwork = unitofwork; _patientrecordservices = patientrecordservices; _patientservices = patientservices; _prescriptionServices = prescriptionServices; _appointmentservices = appointmentservices; _userphysicianservices = userphysicianservices; }
public DashboardController(IAppointmentServices appointmentServices, IPatientServices patientServices, IPrescriptionServices prescriptionServices) { _appointmentServices = appointmentServices; _patientServices = patientServices; _prescriptionServices = prescriptionServices; }