Esempio n. 1
0
 public async Task <T> ExecuteAsync <T>(IPaypalRequest <T> request, string optionsName, string accessToken) where T : PaypalResponse
 {
     return(await ExecuteAsync(request, optionsName, accessToken, null));
 }
Esempio n. 2
0
        public async Task <T> ExecuteAsync <T>(IPaypalRequest <T> request, string optionsName, string accessToken, string appAuthToken) where T : PaypalResponse
        {
            var options = _optionsSnapshotAccessor.Get(optionsName);

            throw new System.NotImplementedException();
        }
Esempio n. 3
0
 public async Task <T> ExecuteAsync <T>(IPaypalRequest <T> request) where T : PaypalResponse
 {
     return(await ExecuteAsync(request, null));
 }