public ActionResult Index()
        {
            Medicine_Purchase medicine_Purchase = new Medicine_Purchase();

            medicine_Purchase.getAllPatientsName  = patientPortal.getAllPatientsName();
            medicine_Purchase.getAllMedicinesName = medicinetPortal.getAllMedicinesName();
            return(View(medicine_Purchase));
        }
示例#2
0
        public ActionResult Index()
        {
            RoomBill roomBill = new RoomBill
            {
                getRoomType        = patientPortal.getRoomType(),
                getAllPatientsName = patientPortal.getAllPatientsName()
            };

            return(View(roomBill));
        }
示例#3
0
        public ActionResult Index()
        {
            DoctorBill doctorBill = new DoctorBill()
            {
                getAllDoctorsName  = doctorPortal.getAllDoctorsName(),
                getAllPatientsName = patientPortal.getAllPatientsName(),
                getAllVisitBills   = doctorBillPortal.getAllVisitBills()
            };

            return(View(doctorBill));
        }