Esempio n. 1
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 TreatmentRecordController(ITreatmentRecordServices TreatmentRecordServices,
                                  IReportService ReportServices, IEncryptionService encryptionService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._reportServices          = ReportServices;
     this._encryptionService       = encryptionService;
 }
 public TreatmentController(ITreatmentServices TreatmentServices,
                            ITreatmentRecordServices TreatmentRecordService, IPermissionService permissionService)
 {
     this._treatmentServices      = TreatmentServices;
     this._permissionService      = permissionService;
     this._treatmentRecordService = TreatmentRecordService;
 }
Esempio n. 4
0
 public FinalValuesAndAccessPostTreatmentController(
     ITreatmentRecordServices TreatmentRecordsServices,
     IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordsServices;
     this._reportService           = ReportService;
 }
Esempio n. 5
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;
 }
Esempio n. 6
0
 public DoctorController(
     ITreatmentRecordServices TreatmentRecordsServices,
     IReportService ReportService)
 {
     this._treatmentRecordsServices = TreatmentRecordsServices;
     this._reportService            = ReportService;
 }
Esempio n. 7
0
 public PreTreatmentAssessmentController(ITreatmentServices TreatmentServices,
                                         ITreatmentRecordServices TreatmentRecordServices,
                                         IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._treatmentServices       = TreatmentServices;
     this._reportService           = ReportService;
 }
Esempio n. 8
0
 public MachineController(ITreatmentRecordServices TreatmentRecordServices,
                          IEquipmentServices EquipmentServices,
                          IReportService ReportService)
 {
     this._treatmentRecordsServices = TreatmentRecordServices;
     this._equipmentServices        = EquipmentServices;
     this._reportService            = ReportService;
 }
 public HospitalController(IHospitalServices HospitalServices,
                           IAddressService AddressService,
                           ITreatmentRecordServices TreatmentRecordService,
                           IPermissionService permissionService, IEncryptionService encryptionService)
 {
     this._hospitalServices       = HospitalServices;
     this._addressService         = AddressService;
     this._treatmentRecordService = TreatmentRecordService;
     this._permissionService      = permissionService;
     this._encryptionService      = encryptionService;
 }
 public CompanyProfileController(
     ICompanyProfileService CompanyProfileService,
     IAddressService addressService,
     IHostingEnvironment hostingEnvironment,
     IReportService reportService,
     IWorkContext workContext,
     ITreatmentRecordServices TreatmentRecordservice,
     IPermissionService permissionService
     )
 {
     this._companyProfileService  = CompanyProfileService;
     this._addressService         = addressService;
     this._hostingEnvironment     = hostingEnvironment;
     this._reportService          = reportService;
     this._workContext            = workContext;
     this._treatmentRecordservice = TreatmentRecordservice;
     this._permissionService      = permissionService;
 }
 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;
 }
        public EquipmentController(
            IEquipmentServices equipmentService,
            IHostingEnvironment hostingEnvironment,
            IReportService reportService, IWorkContext workContext,
            ICompanyProfileService CompanyProfileService,

            IPermissionService permissionService,

            ITreatmentRecordServices TreatmentRecordService

            )
        {
            this._equipmentService       = equipmentService;
            this._hostingEnvironment     = hostingEnvironment;
            this._reportService          = reportService;
            this._workContext            = workContext;
            this._permissionService      = permissionService;
            _companyProfileService       = CompanyProfileService;
            this._treatmentRecordService = TreatmentRecordService;
        }
 public NurseController(INurseServices NurseServices, IWorkContext workContext,
                        ICompanyProfileService CompanyProfileService,
                        IHostingEnvironment hostingEnvironment,
                        ICustomerService CustomerServices,
                        ICustomerPasswordService Customerpasswordservice,
                        IAddressService Addressservice,
                        ITreatmentRecordServices TreatmentRecordservice,
                        IPermissionService permissionService,
                        IEncryptionService encryptionService)
 {
     this._nurseServices           = NurseServices;
     this._hostingEnvironment      = hostingEnvironment;
     this._workContext             = workContext;
     _companyProfileService        = CompanyProfileService;
     this._customerServices        = CustomerServices;
     this._customerpasswordservice = Customerpasswordservice;
     this._addressservice          = Addressservice;
     this._treatmentRecordservice  = TreatmentRecordservice;
     this._permissionService       = permissionService;
     this._encryptionService       = encryptionService;
 }
 public SuppliesAndAccessController(ITreatmentRecordServices TreatmentRecordServices,
                                    IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._reportService           = ReportService;
 }
 public NoteAndReportController(ITreatmentRecordServices TreatmentRecordServices,
                                IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._reportService           = ReportService;
 }
 public RunValuesController(ITreatmentRecordServices TreatmentRecordServices,
                            IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._reportService           = ReportService;
 }
 public MedicationAndPostTreatmentController(ITreatmentRecordServices TreatmentRecordServices,
                                             IReportService ReportService)
 {
     this._treatmentRecordServices = TreatmentRecordServices;
     this._reportService           = ReportService;
 }