예제 #1
0
        public void InsertPaymentDataOrder(List<PaymentDataOrderInfoT> entityList)
        {
            if (entityList != null && entityList.Count > 0)
            {
                PaymentProcessQueryBiz biz = new PaymentProcessQueryBiz();

                foreach (PaymentDataOrderInfoT item in entityList)
                {
                    biz.InsertPaymentDataOrder(item);
                }
            }
        }