Пример #1
0
 public TreatmentRecordController(IReportService reportService,
                                  ITreatmentRecordServices TreatmentRecordServices,
                                  IHospitalServices HospitalServices,
                                  IStateProvinceService StateProvinceService,
                                  IPermissionService permissionService,
                                  ITreatmentServices TreatmentServices,
                                  INurseServices NurseServices,
                                  IPDFService pDFService,
                                  ICompanyProfileService CompanyProfileService,
                                  IAppointmentServices AppointmentServices,
                                  IExcelService excelService,
                                  IEncryptionService encryptionService,
                                  IWordDocService WordDocService) : base(excelService: excelService)
 {
     this._reportService           = reportService;
     this._treatmentRecordServices = TreatmentRecordServices;
     this._hospitalServices        = HospitalServices;
     this._stateProvinceService    = StateProvinceService;
     this._permissionService       = permissionService;
     this._treatmentServices       = TreatmentServices;
     this._nurseServices           = NurseServices;
     this._pDFService            = pDFService;
     this._appointmentServices   = AppointmentServices;
     this._companyProfileService = CompanyProfileService;
     this._encryptionService     = encryptionService;
     this._excelService          = excelService;
     this._wordDocService        = WordDocService;
 }
 public AppointmentController(IReportService reportService, IAppointmentServices AppointmentServices,
                              IEncryptionService encryptionService)
 {
     this._reportService       = reportService;
     this._appointmentServices = AppointmentServices;
     this._encryptionService   = encryptionService;
 }
Пример #3
0
        public HomeController(
            IPermissionService permissionService,
            IWorkContext workContext,
            ITreatmentRecordServices TreatmentRecordServices,
            ITreatmentServices TreatmentServices,
            IReportService ReportService,
            IEncryptionService encryptionService,
            INurseServices NurseServices,
            IHospitalServices HospitalServices,
            ICompanyProfileService CompanyProfileService,
            IAppointmentServices AppointmentServices,
            IExcelService excelService

            )
        {
            this._permissionService       = permissionService;
            this._treatmentRecordServices = TreatmentRecordServices;
            this._treatmentServices       = TreatmentServices;
            this._workContext             = workContext;
            this._reportService           = ReportService;
            this._encryptionService       = encryptionService;
            this._nurseServices           = NurseServices;
            this._hospitalServices        = HospitalServices;
            this._appointmentServices     = AppointmentServices;
            this._companyProfileService   = CompanyProfileService;
            this.excelService             = excelService;
        }
Пример #4
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;
        }
Пример #5
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;
 }
Пример #6
0
 public AppointmentController(IReportService reportService,
                              IHospitalServices HospitalServices,
                              IAppointmentServices AppointmentServices,
                              IPermissionService permissionService,
                              IEncryptionService encryptionService)
 {
     this._reportService       = reportService;
     this._hospitalServices    = HospitalServices;
     this._appointmentServices = AppointmentServices;
     this._permissionService   = permissionService;
     this._encryptionService   = encryptionService;
 }
 public PatientController(ICompanyProfileService CompanyProfileService,
                          IHospitalServices HospitalServices,
                          INurseServices NurseServices,
                          ITreatmentServices TreatmentServices,
                          ITreatmentRecordServices TreatmentRecordsServices,
                          IAppointmentServices AppointmentServices,
                          IReportService ReportService,
                          IEncryptionService encryptionService)
 {
     this._companyProfileService    = CompanyProfileService;
     this._hospitalServices         = HospitalServices;
     this._nurseServices            = NurseServices;
     this._treatmentServices        = TreatmentServices;
     this._treatmentRecordsServices = TreatmentRecordsServices;
     this._appointmentServices      = AppointmentServices;
     this._reportService            = ReportService;
     this._encryptionService        = encryptionService;
 }
Пример #8
0
 public AppointmentController(IAppointmentServices apmServices)
 {
     _apmServices = apmServices;
 }
Пример #9
0
 public CernerAppointmentServices(IAppointmentServices appointmentServices, IUnitOfWork <ChargeCaptureDB> uow, IUserInfo userInfo) : base(uow.GetRepository <CernerAppointment>(), userInfo)
 {
     _uow = uow;
     _appointmentServices = appointmentServices;
 }
Пример #10
0
 public ReviewsController(IAppointmentServices apmServices)
 {
     _apmServices = apmServices;
 }
 public AppointmentsController(IAppointmentServices appointmentsServices)
 {
     this.appointmentsServices = appointmentsServices;
 }
Пример #12
0
 public AppointmentController(IAppointmentServices AppointmentServices)
 {
     _AppointmentServices = AppointmentServices;
 }
 public DocAppointmentController(IAppointmentServices appointmentServices, IUnitOfWork unitOfWork)
 {
     _appointmentServices = appointmentServices;
     _unitOfWork          = unitOfWork;
 }
Пример #14
0
 public PatientController(IPatientServices patientServices, IAppointmentServices appointmentServices, IUnitOfWork unitofwork)
 {
     this._patientServices     = patientServices;
     this._unitofwork          = unitofwork;
     this._appointmentServices = appointmentServices;
 }
Пример #15
0
 public DashboardController(IAppointmentServices appointmentServices, IPatientServices patientServices, IPrescriptionServices prescriptionServices)
 {
     _appointmentServices  = appointmentServices;
     _patientServices      = patientServices;
     _prescriptionServices = prescriptionServices;
 }