示例#1
0
        public ActionResult Index()
        {
            Patient patient = new Patient
            {
                getAllPatienstList = patientPortal.selectAll(),
                getRoomType        = patientPortal.getRoomType(),
                getAllDoctorsName  = doctorPortal.getAllDoctorsName()
            };

            return(View(patient));
        }
示例#2
0
 public ActionResult Index()
 {
     return(View(patientPortal.selectAll()));
 }