コード例 #1
0
        public ActionResult Appointments(string practitionerId)
        {
            PractitionerProcess     process = new PractitionerProcess();
            List <AppointmentModel> result  = process.GetAppointmentsTable(practitionerId);

            return(Json(result, JsonRequestBehavior.AllowGet));
        }