namespace LaaProduction.Http.Interfaces { using System; using System.Threading.Tasks; public interface IHttpMessage : IDisposable { IHttpMessage AuthorizeBearer(string parameter); Task> SendAsync(); IHttpMessage WhitJsonBody(object model); } }