Пример #1
0
        public void InsertPaymentDataCostbasisInfo(List<PaymentDataCostBasisInfoT> entityList)
        {
            if (entityList != null && entityList.Count > 0)
            {
                PaymentProcessQueryBiz biz = new PaymentProcessQueryBiz();

                foreach (PaymentDataCostBasisInfoT item in entityList)
                {
                    biz.InsertPaymentDataCostbasisInfo(item);
                }
            }
        }