public static List <CTHV> GetNewCTHVs() { var cthvs = DAL_CTHV.GetNewCTHVs(); if (cthvs == null) { return(new List <CTHV>()); } return(cthvs); }
public static List <CTHV> GetCTHVs(int maCB) { var cthvs = DAL_CTHV.GetCTHVs(maCB); if (cthvs == null) { return(new List <CTHV>()); } return(cthvs); }
public static bool CheckGhe(int maCB, int MaHV) { return(DAL_CTHV.CheckGhe(maCB, MaHV)); }
public static bool DeleteCTHV(int maCB) { return(DAL_CTHV.DeleteCTHV(maCB)); }
public static bool UpdateCTHV(CTHV cTHV) { return(DAL_CTHV.UpdateCTHV(cTHV)); }
public static bool InsertCTHV(CTHV cTHV, int maCB) { return(DAL_CTHV.InsertCTHV(cTHV, maCB)); }