16 lines
399 B
C#
16 lines
399 B
C#
namespace LaaProduction.Http.Interfaces
|
|
{
|
|
public interface IHttpClient
|
|
{
|
|
IHttpMessage Delete(string route, bool full = false);
|
|
|
|
IHttpMessage Get(string route, bool full = false);
|
|
|
|
IHttpMessage Options(string route, bool full = false);
|
|
|
|
IHttpMessage Post(string route, bool full = false);
|
|
|
|
IHttpMessage Put(string route, bool full = false);
|
|
}
|
|
}
|