public ActionResult EditPatientType(int id)
        {
            BL_PatientType objPatient = new BL_PatientType();

            ModelState.Clear();
            return(View(objPatient.GetPatientType(id)));
        }