コード例 #1
0
        public void BatchAdjustPoint(List <CustomerPointsAddRequest> request)
        {
            ICustomerBizInteract service = ObjectFactory <ICustomerBizInteract> .Instance;

            request.ForEach(e => {
                service.AdjustPoint(e);
            });
        }