예제 #1
0
        public override ListCustomersResponse Execute <T>(T transaction)
        {
            base.Execute(transaction); //Needed to inject Authorization headers
            ITrnListCustomers data = (ITrnListCustomers)transaction;
            var response           = customersApi.ListCustomers(data.PaginationCursor);

            return(response);
        }
예제 #2
0
 public ListCustomersResponse ListCustomers(ITrnListCustomers data)
 {
     return(new CallListCustomers(customersApi).Execute(data));
 }