/// <summary> /// List Report /// </summary> /// <returns></returns> /// <history> /// [Truong Lam] Created [10/06/2020] /// </history> public List <Report> DataReportDay(DateTime now, int reportTypeID) { try { ReportDAL dal = new ReportDAL(); List <Report> result = dal.DataReportDay(now, reportTypeID); return(result); } catch (Exception ex) { throw new DongAException(DongALayer.Business, ex.Message, ex); } }