Exemplo n.º 1
0
        public ActionResult Edit(instructorVM instructorvm)
        {
            InstructorBll.UpdateInstructor(instructorvm);

            ViewBag.Istructors = InstructorBll.getAllIstructors();

            return(RedirectToAction("index", "Instructor", new { area = "AdminArea" }));
        }
 public ActionResult Edit(instructorQualificationPhoneViewModel instructorvm)
 {
     InstructorBll.UpdateInstructor(instructorvm);
     return(RedirectToAction("index"));
 }