forked from ddrilling/AsbCloudServer
11 lines
295 B
C#
11 lines
295 B
C#
|
using AsbCloudApp.Data;
|
||
|
using Refit;
|
||
|
|
||
|
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
||
|
|
||
|
public interface IDrillerClient
|
||
|
{
|
||
|
|
||
|
[Get("/api/drillers")]
|
||
|
Task<IApiResponse<IEnumerable<DrillerDto>>> GetAsync([Query(CollectionFormat.Multi)] IEnumerable<int> idsWells, CancellationToken token);
|
||
|
}
|