Exemplo n.º 1
0
 public PrescriptionController(IPrescriptionServices prescriptionServices, IUnitOfWork unitOfWork, IPatientRecordServices patientRecordServices, IPatientServices patientServices)
 {
     _prescriptionServices  = prescriptionServices;
     _unitOfWork            = unitOfWork;
     _patientRecordServices = patientRecordServices;
     _patientServices       = patientServices;
 }
Exemplo n.º 2
0
        //private readonly IUserPhysicianService _userPhysicianService;


        public AppointmentController(IAppointmentServices appointmentServices, IPatientServices patientServices, IUnitOfWork unitofwork, IUserPhysicianService userPhysicianService, IPatientRecordServices patientRecordServices)
        {
            _appointmentServices = appointmentServices;
            _patientServices     = patientServices;
            _unitofwork          = unitofwork;
            //_userPhysicianService = userPhysicianService;
            _patientRecordServices = patientRecordServices;
        }
Exemplo n.º 3
0
 public PatientMedicalRecordController(IPatientRecordServices patientrecordservices, IPatientServices patientservices, IUnitOfWork unitOfWork, IPrescriptionServices prescriptionServices, IPhyPrescriptionServices phyPrescriptionServices)
 {
     _patientrecordservices   = patientrecordservices;
     _patientservices         = patientservices;
     _unitOfWork              = unitOfWork;
     _prescriptionServices    = prescriptionServices;
     _phyPrescriptionServices = phyPrescriptionServices;
 }
Exemplo n.º 4
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;
 }