コード例 #1
0
        public ActionResult Records(string practitionerId)
        {
            PractitionerBaseViewModel vm = new PractitionerBaseViewModel();

            vm.AccId = Guid.Parse(practitionerId);
            PractitionerProcess process = new PractitionerProcess();
            List <PractitionerRecordsDirectory> result = process.GetRecordsDirectory(vm);

            //pass balck list of records model
            return(Json(result, JsonRequestBehavior.AllowGet));
        }