Beispiel #1
0
 public ActionResult Save(Product objProduct)
 {
     if (ModelState.IsValid)
     {
         ProductBLL objProductBll = new ProductBLL();
         objProductBll.CreateProduct(objProduct);
     }
     return(RedirectToAction("Index", "Product"));
 }