Exemplo n.º 1
0
 public ActionResult NewCategory(Category newCategory)
 {
     repo.CreateOrUpdate(newCategory);
     repo.SaveChanges();
     return(RedirectToAction("Index"));
 }