public ActionResult DeleteConfirmed(int id)
 {
     try
     {
         IBL bL = new BlClass();
         bL.DeleteDoctor(id);
         ViewBag.TitlePopUp = "עבר בהצלחה";
         ViewBag.Message    = "הרופא.ה נמחק.ה בהצלחה ממאגר הרופאים";
         return(View("Index", new DoctorModel().getDoctorVms()));
     }
     catch (Exception ex)
     {
         ViewBag.TitlePopUp = "שגיאה";
         ViewBag.Message    = ex.Message;
         return(View("Index", new DoctorModel().getDoctorVms()));
     }
 }