示例#1
0
 public ActionResult Update(Production_ProductCategoryCLS category)
 {
     client.UPDATE_Production_ProductCategory_Result(category.ProductCategoryID, category.Name, category.ModifiedDate);
     return(RedirectToAction("Index"));
 }
示例#2
0
 public ActionResult Insert(Production_ProductCategoryCLS category)
 {
     client.INSERT_Production_ProductCategory_Result(category.Name, category.ModifiedDate);
     return(RedirectToAction("Index"));
 }