示例#1
0
 public static int DeleteGoiMon(string _MaBan)
 {
     try
     {
         Models.GoiMonMod _goimon = new Models.GoiMonMod(_MaBan);
         return(_goimon.DeleteGoiMon());
     }
     catch
     {
         return(0);
     }
 }
示例#2
0
 // Xóa
 public static int DeleteGoiMon(string idBan)
 {
     try
     {
         Models.GoiMonMod goimon = new Models.GoiMonMod(idBan);
         return(goimon.DeleteGoiMon());
     }
     catch (Exception)
     {
         return(0);
     }
 }