Beispiel #1
0
 public PrescriptionController(IPrescriptionServices prescriptionServices, IUnitOfWork unitOfWork, IPatientRecordServices patientRecordServices, IPatientServices patientServices)
 {
     _prescriptionServices  = prescriptionServices;
     _unitOfWork            = unitOfWork;
     _patientRecordServices = patientRecordServices;
     _patientServices       = patientServices;
 }
Beispiel #2
0
 public PatientMedicalRecordController(IPatientRecordServices patientrecordservices, IPatientServices patientservices, IUnitOfWork unitOfWork, IPrescriptionServices prescriptionServices, IPhyPrescriptionServices phyPrescriptionServices)
 {
     _patientrecordservices   = patientrecordservices;
     _patientservices         = patientservices;
     _unitOfWork              = unitOfWork;
     _prescriptionServices    = prescriptionServices;
     _phyPrescriptionServices = phyPrescriptionServices;
 }
Beispiel #3
0
 // 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;
 }
Beispiel #4
0
 public DashboardController(IAppointmentServices appointmentServices, IPatientServices patientServices, IPrescriptionServices prescriptionServices)
 {
     _appointmentServices  = appointmentServices;
     _patientServices      = patientServices;
     _prescriptionServices = prescriptionServices;
 }