namespace LaaProduction.Http.Interfaces { public interface IHttpClient { void BaseURL(string baseURL); HttpResponse DELETE(string uri); HttpResponse DELETE(string uri, string bearer); HttpResponse GET(string uri); HttpResponse GET(string uri, string bearer); HttpResponse POST(string uri); HttpResponse POST(string uri, object body); HttpResponse POST(string uri, string bearer); HttpResponse POST(string uri, string bearer, object body); HttpResponse PUT(string uri); HttpResponse PUT(string uri, object body); HttpResponse PUT(string uri, string bearer); HttpResponse PUT(string uri, string bearer, object body); } }