Exemplo n.º 1
0
        public CreateNewCardResponse CreateNewCard(CreateNewCardRequest createNewCardRequest)
        {
            SetupIntent setupIntent = _adaptee.CreateNewCard(createNewCardRequest.CustomerId, createNewCardRequest.UserId);

            return(new CreateNewCardResponse()
            {
                SetupIntentId = setupIntent.Id,
                ClientSecret = setupIntent.ClientSecret
            });
        }
Exemplo n.º 2
0
 public Task <string> Post(string url, CreateNewCardRequest request)
 {
     throw new NotImplementedException();
 }
 public CreateNewCardResponse CreateNewCard(CreateNewCardRequest createNewCardRequest)
 {
     throw new NotImplementedException();
 }