Пример #1
0
 /// <summary>
 /// List Report cho tháng - Nguyên tệ
 /// </summary>
 /// <returns></returns>
 /// <history>
 ///     [Truong Lam]   Created [10/06/2020]
 /// </history>
 public List <ReportForTotalMoneyType> DataReportypeForMonth(DateTime now, string reportTypeID)
 {
     try
     {
         ReportDAL dal = new ReportDAL();
         List <ReportForTotalMoneyType> result = dal.DataReportypeForMonth(now, reportTypeID);
         return(result);
     }
     catch (Exception ex)
     {
         throw new DongAException(DongALayer.Business, ex.Message, ex);
     }
 }