Example #1
0
        public List<T_FB_BORROWAPPLYMASTER> GetBorrowApplyMasterListForRepay(string strOwnerID, decimal dIsRepaied, decimal dCheckStates, string strFilter, List<object> objArgs)
        {
            IQueryable<T_FB_BORROWAPPLYMASTER> entIq;
            IList<T_FB_BORROWAPPLYMASTER> entList = new List<T_FB_BORROWAPPLYMASTER>();
            BorrowApplyMasterBLL bllBorrowApplyMaster = new BorrowApplyMasterBLL();
            entIq = bllBorrowApplyMaster.GetBorrowApplyMasterListForRepay(strOwnerID, dIsRepaied, dCheckStates, strFilter, objArgs);
            if (entIq == null)
            {
                return null;
            }

            entList = entIq.ToList();
            return entList != null ? entList.ToList() : null;
        }
Example #2
0
        public List <T_FB_BORROWAPPLYMASTER> GetBorrowApplyMasterListForRepay(string strOwnerID, decimal dIsRepaied, decimal dCheckStates, string strFilter, List <object> objArgs)
        {
            IQueryable <T_FB_BORROWAPPLYMASTER> entIq;
            IList <T_FB_BORROWAPPLYMASTER>      entList = new List <T_FB_BORROWAPPLYMASTER>();
            BorrowApplyMasterBLL bllBorrowApplyMaster   = new BorrowApplyMasterBLL();

            entIq = bllBorrowApplyMaster.GetBorrowApplyMasterListForRepay(strOwnerID, dIsRepaied, dCheckStates, strFilter, objArgs);
            if (entIq == null)
            {
                return(null);
            }

            entList = entIq.ToList();
            return(entList != null?entList.ToList() : null);
        }