public ActionResult Create(LoaiSanPham lsp) // return view ở create sau đó request ở httppost
 {
     try
     {
         LoaiSanPhamBUS.InsertLSP(lsp); // gọi hàm InsertLSP của LoaiSanPhamBUS vào
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }
 public ActionResult Create(LOAISANPHAM lsp)
 {
     try
     {
         // TODO: Add insert logic here
         LoaiSanPhamBUS.InsertLSP(lsp);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }