public static bool KiemTraKho(string maKho) { try { Kho dao = new Kho(); DataTable table = dao.GetKho(maKho); if (table.Rows.Count > 0) { return(true); } } catch (Exception ex) { throw ex; } return(false); }