Exemplo n.º 1
0
 public ActionResult Edit(int?id)
 {
     if (!string.IsNullOrEmpty(id.ToString()))
     {
         _sessionRepo = new SchoolSessionRepository();
         var schSession = _sessionRepo.FindById(Convert.ToInt16(id));
         ViewBag.SchSession = schSession.ToList();
         return(View());
     }
     return(View("Index"));
 }