public static HOA_DON LayBienNhan(int maHoaDon)
 {
     try
     {
         return(HOA_DON.select(" where MA_HOA_DON = " + maHoaDon + " and LOAI_HOA_DON = 3 ")[0]);
     }
     catch (Exception)
     {
         return(null);
     }
 }
        public static List <HOA_DON> LayPhieuXuat(DateTime ngayBatDau, DateTime ngayKetThuc)
        {
            List <HOA_DON> px = HOA_DON.select(" where LOAI_HOA_DON = 2 and THOI_GIAN >= '" + ngayBatDau + "' and THOI_GIAN < '" + ngayKetThuc + "' ");

            return(px);
        }