Exemplo n.º 1
0
 public ActionResult Edit(shop.LOAISANPHAM lsp)
 {
     try
     {
         // TODO: Add update logic here
         Models.LoaiSanPham.LoaiSanPhamBus.UpdateCategory(lsp);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }
Exemplo n.º 2
0
 public ActionResult Create(shop.LOAISANPHAM lsp)
 {
     try
     {
         // TODO: Add insert logic here
         Models.LoaiSanPham.LoaiSanPhamBus.insert(lsp);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }