Esempio n. 1
0
        public List <T_FB_CHARGEAPPLYDETAIL> GetChargeApplyDetailByMasterID(List <object> objChargeApplyMasterId)
        {
            List <T_FB_CHARGEAPPLYDETAIL> entRdlist = new List <T_FB_CHARGEAPPLYDETAIL>();

            using (ChargeApplyDetailBLL bllChargeApplyDetail = new ChargeApplyDetailBLL())
            {
                entRdlist = bllChargeApplyDetail.GetChargeApplyDetailByMasterID(objChargeApplyMasterId);
                return(entRdlist);
            }
        }
Esempio n. 2
0
        public T_FB_CHARGEAPPLYDETAIL GetChargeApplyDetailByID(string strChargeApplyDetailId)
        {
            T_FB_CHARGEAPPLYDETAIL entRd = new T_FB_CHARGEAPPLYDETAIL();

            using (ChargeApplyDetailBLL bllChargeApplyDetail = new ChargeApplyDetailBLL())
            {
                entRd = bllChargeApplyDetail.GetChargeApplyDetailByID(strChargeApplyDetailId);
                return(entRd);
            }
        }
Esempio n. 3
0
        public List <T_FB_CHARGEAPPLYDETAIL> GetChargeApplyDetailListByMultSearch(string strFilter, List <object> objArgs,
                                                                                  string strSortKey, int pageIndex, int pageSize, ref int pageCount)
        {
            IList <T_FB_CHARGEAPPLYDETAIL> entList = new List <T_FB_CHARGEAPPLYDETAIL>();

            using (ChargeApplyDetailBLL bllChargeApplyDetail = new ChargeApplyDetailBLL())
            {
                entList = bllChargeApplyDetail.GetChargeApplyDetailRdListByMultSearch(strFilter, objArgs, strSortKey, pageIndex, pageSize, ref pageCount).ToList();
                return(entList.Count() > 0 ? entList.ToList() : null);
            }
        }
Esempio n. 4
0
 public List<T_FB_CHARGEAPPLYDETAIL> GetChargeApplyDetailByMasterID(List<object> objChargeApplyMasterId)
 {
     List<T_FB_CHARGEAPPLYDETAIL> entRdlist = new List<T_FB_CHARGEAPPLYDETAIL>();
     using (ChargeApplyDetailBLL bllChargeApplyDetail = new ChargeApplyDetailBLL())
     {
         entRdlist = bllChargeApplyDetail.GetChargeApplyDetailByMasterID(objChargeApplyMasterId);
         return entRdlist;
     }
 }
Esempio n. 5
0
 public List<T_FB_CHARGEAPPLYDETAIL> GetChargeApplyDetailListByMultSearch(string strFilter, List<object> objArgs,
     string strSortKey, int pageIndex, int pageSize, ref int pageCount)
 {
     IList<T_FB_CHARGEAPPLYDETAIL> entList = new List<T_FB_CHARGEAPPLYDETAIL>();
     using (ChargeApplyDetailBLL bllChargeApplyDetail = new ChargeApplyDetailBLL())
     {
         entList = bllChargeApplyDetail.GetChargeApplyDetailRdListByMultSearch(strFilter, objArgs, strSortKey, pageIndex, pageSize, ref pageCount).ToList();
         return entList.Count() > 0 ? entList.ToList() : null;
     }
 }
Esempio n. 6
0
 public T_FB_CHARGEAPPLYDETAIL GetChargeApplyDetailByID(string strChargeApplyDetailId)
 {
     T_FB_CHARGEAPPLYDETAIL entRd = new T_FB_CHARGEAPPLYDETAIL();
     using (ChargeApplyDetailBLL bllChargeApplyDetail = new ChargeApplyDetailBLL())
     {
         entRd = bllChargeApplyDetail.GetChargeApplyDetailByID(strChargeApplyDetailId);
         return entRd;
     }
 }