示例#1
0
        public async Task <IResult <Domain.PaymentInformation> > PaymentInformationSaveAsync(Domain.PaymentInformation inputDTO)
        {
            ProxyXFMPayment.PaymentInformationInput input = new PaymentInformationInput();
            input.PaymentInformation = AutoMapper.Mapper.Map <ProxyXFMPayment.PaymentInformation>(inputDTO);
            input.InputContext       = this.UpdateContext <ProxyXFMPayment.Context>();
            var result = await InvokeMethodAsync <Domain.PaymentInformation, ProxyXFMPayment.WSPaymentClient>("PaymentInformationSave", input);

            return(result);
        }
示例#2
0
 public IResult <Domain.PaymentInformation> PaymentInformationSave(Domain.PaymentInformation inputDTO)
 {
     throw new NotImplementedException();
 }