forked from ddrilling/AsbCloudServer
13 lines
254 B
C#
13 lines
254 B
C#
using AsbCloudApp.Data;
|
|
using Refit;
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
|
|
|
public interface IWellClient
|
|
{
|
|
private const string BaseRoute = "/api/well";
|
|
|
|
[Get(BaseRoute)]
|
|
Task<IApiResponse<IEnumerable<WellDto>>> GetWellsAsync();
|
|
}
|