예제 #1
0
 public ActionResult Add(ShopGradeModel shopG)
 {
     if (ModelState.IsValid)
     {
         _iShopService.AddShopGrade(shopG);
         return(RedirectToAction("Management"));
     }
     return(View(shopG));
 }