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 Execute(IRequest req); IAsyncResult BeginExecute(IRequest req, AsyncCallback callback); } }