IGateway.cs 243 B

12345678910
  1. using PaySharp.Core.Request;
  2. using PaySharp.Core.Response;
  3. namespace PaySharp.Core
  4. {
  5. public interface IGateway
  6. {
  7. TResponse Execute<TModel, TResponse>(Request<TModel, TResponse> request) where TResponse : IResponse;
  8. }
  9. }