예제 #1
0
 public byte[] OutFileYearlyBudgetAnalysisList(string strOrgType, string strOwnerId, int iYear, int iMonthStart,
     int iMonthEnd, string strSortKey, string strFilter, List<object> objArgs)
 {
     BudgetCheckBLL bllExecution = new BudgetCheckBLL();
     byte[] byVac = bllExecution.OutFileYearlyBudgetAnalysisList(strOrgType, strOwnerId, iYear, iMonthStart, iMonthEnd, strSortKey, strFilter, objArgs);
     return byVac;
 }
예제 #2
0
 public List<V_MonthlyBudgetAnalysis> GetMonthlyBudgetAnalysisListByPaging(string strOrgType, string strOwnerId, int iYear, int iMonth,
     string strSortKey, string strFilter, List<object> objArgs, int pageIndex, int pageSize, ref int pageCount)
 {
     IList<V_MonthlyBudgetAnalysis> entList = new List<V_MonthlyBudgetAnalysis>();
     BudgetCheckBLL bllBudgetCheck = new BudgetCheckBLL();
     entList = bllBudgetCheck.GetMonthlyBudgetAnalysisByMultSearch(strOrgType, strOwnerId, iYear, iMonth, strSortKey, strFilter, objArgs, pageIndex, pageSize, ref pageCount);
     return entList.Count() > 0 ? entList.ToList() : null;
 }
예제 #3
0
 public byte[] OutFileStandingBookList(string strOrgType, string strOwnerId, DateTime dtStart, DateTime dtEnd, string strSortKey, string strFilter, List<object> objArgs)
 {
     BudgetCheckBLL bllExecution = new BudgetCheckBLL();
     byte[] byVac = bllExecution.OutFileStandingBookList(strOrgType, strOwnerId, dtStart, dtEnd, strSortKey, strFilter, objArgs);
     return byVac;
 }
예제 #4
0
 public List<V_StandingBook> GetStandingBookListByPaging(string strOrgType, string strOwnerId, DateTime dtStart, DateTime dtEnd, string strSortKey,
     string strFilter, List<object> objArgs, int pageIndex, int pageSize, ref int pageCount)
 {
     IList<V_StandingBook> entList = new List<V_StandingBook>();
     BudgetCheckBLL bllBudgetCheck = new BudgetCheckBLL();
     entList = bllBudgetCheck.GetStandingBookByMultSearch(strOrgType, strOwnerId, dtStart, dtEnd, strSortKey, strFilter, objArgs, pageIndex, pageSize, ref pageCount);
     return entList.Count() > 0 ? entList.ToList() : null;
 }