Ejemplo n.º 1
0
 //
 // GET: /Admin/Role/Show
 public ActionResult Edit(int Id)
 {
     ViewBag.model = bll.GetModelById(Id);
     return(View("~/Views/Admin/Role/Show.cshtml"));
 }
Ejemplo n.º 2
0
 //
 // GET: /Admin/Role/Show
 public ActionResult Show(int Id)
 {
     ViewBag.model = bll.GetModelById(Id);
     return View();
 }