public ActionResult GetPatientById(int id)
 {
     Service serv = new Service();
     var model = serv.GetPatientById(id);
     return Json(model, JsonRequestBehavior.AllowGet);
 }