forked from ddrilling/AsbCloudServer
14 lines
373 B
C#
14 lines
373 B
C#
|
using AsbCloudApp.Data;
|
||
|
using AsbCloudApp.Data.ProcessMapPlan;
|
||
|
using AsbCloudApp.Requests;
|
||
|
using Refit;
|
||
|
|
||
|
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
||
|
|
||
|
public interface IWellOperationClient
|
||
|
{
|
||
|
private const string BaseRoute = "/api/wellOperation";
|
||
|
|
||
|
[Post(BaseRoute)]
|
||
|
Task<IApiResponse<int>> InsertRange(int idWell, [Body] IEnumerable<WellOperationDto> dtos);
|
||
|
}
|