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