public ActionResult NewCategory(Category newCategory)
 {
     repo.CreateOrUpdate(newCategory);
     repo.SaveChanges();
     return(RedirectToAction("Index"));
 }