Ejemplo n.º 1
0
 public List<T_FB_REPAYAPPLYDETAIL> GetRepayApplyDetailListByMasterID(string strRepayApplyMasterId)
 {
     List<T_FB_REPAYAPPLYDETAIL> entRds = new List<T_FB_REPAYAPPLYDETAIL>();
     using(RepayApplyDetailBLL bllRepayApplyDetail = new RepayApplyDetailBLL())
     {
         entRds = bllRepayApplyDetail.GetRepayApplyDetailByMasterID(strRepayApplyMasterId);
         return entRds;
     }
 }
Ejemplo n.º 2
0
 public T_FB_REPAYAPPLYDETAIL GetRepayApplyDetailByID(string strRepayApplyDetailId)
 {
     T_FB_REPAYAPPLYDETAIL entRd = new T_FB_REPAYAPPLYDETAIL();
     using(RepayApplyDetailBLL bllRepayApplyDetail = new RepayApplyDetailBLL())
     {
         entRd = bllRepayApplyDetail.GetRepayApplyDetailByID(strRepayApplyDetailId);
         return entRd;
     }
 }
Ejemplo n.º 3
0
 public List<T_FB_REPAYAPPLYDETAIL> GetRepayApplyDetailListByMultSearch(string strFilter, List<object> objArgs,
     string strSortKey, int pageIndex, int pageSize, ref int pageCount)
 {
     IList<T_FB_REPAYAPPLYDETAIL> entList = new List<T_FB_REPAYAPPLYDETAIL>();
     using(RepayApplyDetailBLL bllRepayApplyDetail = new RepayApplyDetailBLL())
     {
         entList = bllRepayApplyDetail.GetRepayApplyDetailRdListByMultSearch(strFilter, objArgs, strSortKey, pageIndex, pageSize, ref pageCount).ToList();
         return entList.Count() > 0 ? entList.ToList() : null;
     }
 }
Ejemplo n.º 4
0
        public List <T_FB_REPAYAPPLYDETAIL> GetRepayApplyDetailListByMasterID(string strRepayApplyMasterId)
        {
            List <T_FB_REPAYAPPLYDETAIL> entRds = new List <T_FB_REPAYAPPLYDETAIL>();

            using (RepayApplyDetailBLL bllRepayApplyDetail = new RepayApplyDetailBLL())
            {
                entRds = bllRepayApplyDetail.GetRepayApplyDetailByMasterID(strRepayApplyMasterId);
                return(entRds);
            }
        }
Ejemplo n.º 5
0
        public T_FB_REPAYAPPLYDETAIL GetRepayApplyDetailByID(string strRepayApplyDetailId)
        {
            T_FB_REPAYAPPLYDETAIL entRd = new T_FB_REPAYAPPLYDETAIL();

            using (RepayApplyDetailBLL bllRepayApplyDetail = new RepayApplyDetailBLL())
            {
                entRd = bllRepayApplyDetail.GetRepayApplyDetailByID(strRepayApplyDetailId);
                return(entRd);
            }
        }
Ejemplo n.º 6
0
        public List <T_FB_REPAYAPPLYDETAIL> GetRepayApplyDetailListByMultSearch(string strFilter, List <object> objArgs,
                                                                                string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            IList <T_FB_REPAYAPPLYDETAIL> entList = new List <T_FB_REPAYAPPLYDETAIL>();

            using (RepayApplyDetailBLL bllRepayApplyDetail = new RepayApplyDetailBLL())
            {
                entList = bllRepayApplyDetail.GetRepayApplyDetailRdListByMultSearch(strFilter, objArgs, strSortKey, pageIndex, pageSize, ref pageCount).ToList();
                return(entList.Count() > 0 ? entList.ToList() : null);
            }
        }