| 12345678910111213141516 |
- using Amazon.Runtime.Internal;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Core.HttpHelper
- {
- public interface ICoreClient
- {
- Response Execute(IRequest req);
- Response<T> Execute<T>(IRequest<T> req);
- IAsyncResult BeginExecute(IRequest req, AsyncCallback callback);
- }
- }
|