public int CapNhat(LOAIBAIVIET lpDTO)
 {
     try
     {
         LinQDataContext db = new LinQDataContext(global::DAOAuction.Properties.Settings.Default.webdoantruongConnectionString);
         db.LOAIBAIVIET_update(
             lpDTO.MaLoaiBaiViet,
             lpDTO.TenLoaiBaiViet,
             lpDTO.MaChuyenMuc
             );
         db.SubmitChanges();
         return 1;
     }
     catch (Exception ex)
     {
         throw (ex);
     }
 }