Ejemplo n.º 1
0
        public ActionResult DeleteTutor(int id)
        {
            ITutorRepo repo = new TutorRepo();

            repo.Delete(id);
            Session["tutor"]    = "False";
            TempData["welcome"] = "Yor Account has been deleted Successfully";
            return(RedirectToAction("Index", "Home"));
        }