Exemplo n.º 1
0
        protected async Task <RotessaCustomer> CreateCustomerAsync(CreateRotessaCustomer request)
        {
            var customer = await this.gateway.PostAsync(request);

            return(customer);
        }
Exemplo n.º 2
0
        protected RotessaCustomer CreateCustomer(CreateRotessaCustomer request)
        {
            var customer = this.gateway.Post(request);

            return(customer);
        }