예제 #1
0
        public ActionResult PatientIndividualProfile(Int64 PatientID)
        {
            PatientModel model = new PatientModel();

            model.PatientID = PatientID;

            model = model.GetPatientDataByPatientId();
            return(View(model));
        }