Exemplo n.º 1
0
 public ActionResult Create(Period period)
 {
     try
     {
         periodService.Add(period);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }