ICoreClient.cs 397 B

12345678910111213141516
  1. using Amazon.Runtime.Internal;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Business.Core.HttpHelper
  8. {
  9. public interface ICoreClient
  10. {
  11. Response Execute(IRequest req);
  12. Response<T> Execute<T>(IRequest<T> req);
  13. IAsyncResult BeginExecute(IRequest req, AsyncCallback callback);
  14. }
  15. }