Exemplo n.º 1
0
        public ActionResult Edit(int id)
        {
            var tm = tb.GetTeacherModel(id);

            if (tm != null)
            {
                return(View(tm));
            }
            else
            {
                return(RedirectToAction("Index"));
            }
        }