public PatientChartsController(OperatorPatientCharts view)
 {
     this.view               = view;
     this.patientModel       = new Models.Patient();
     this.patientChartModel  = new Models.PatientChart();
     this.chartDocumentModel = new Models.ChartDocument();
     this.allergenModel      = new Models.Allergen();
     this.counter            = 0;
     this.pageCount          = 1;
 }
示例#2
0
 public PrescriptionsController(Prescription view)
 {
     this.view                        = view;
     this.reservationModel            = new Models.Reservation();
     this.doctorModel                 = new Models.Doctor();
     this.allergenModel               = new Models.Allergen();
     this.medicamentModel             = new Models.Medicament();
     this.prescriptionModel           = new Models.Prescription();
     this.prescriptionMedicamentModel = new Models.PrescriptionMedicament();
 }