Example #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;
 }
Example #2
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;
        }
 public TreatmentController(ITreatmentServices TreatmentServices,
                            ITreatmentRecordServices TreatmentRecordService, IPermissionService permissionService)
 {
     this._treatmentServices      = TreatmentServices;
     this._permissionService      = permissionService;
     this._treatmentRecordService = TreatmentRecordService;
 }
Example #4
0
 public PreTreatmentAssessmentController(ITreatmentServices TreatmentServices,
                                         ITreatmentRecordServices TreatmentRecordServices,
                                         IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._treatmentServices       = TreatmentServices;
     this._reportService           = ReportService;
 }
 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;
 }