Exemple #1
0
 public ActionResult Add(BrandVm bind)
 {
     if (ModelState.IsValid)
     {
         service.AddBrandToDb(bind);
         return(RedirectToAction("Index"));
     }
     return(RedirectToAction("Index"));
 }