Beispiel #1
0
 /// <summary>
 /// List Report cho so sánh last month - USD
 /// </summary>
 /// <returns></returns>
 /// <history>
 ///     [Truong Lam]   Created [10/06/2020]
 /// </history>
 public List <ReportForTotalMoneyType> DataReportypeCompareForMonthConvert(int toYear, int toMonth, string reportTypeID)
 {
     try
     {
         ReportDAL dal = new ReportDAL();
         List <ReportForTotalMoneyType> result = dal.DataReportypeCompareForMonthConvert(toYear, toMonth, reportTypeID);
         return(result);
     }
     catch (Exception ex)
     {
         throw new DongAException(DongALayer.Business, ex.Message, ex);
     }
 }