forked from ddrilling/AsbCloudServer
13 lines
402 B
C#
13 lines
402 B
C#
using AsbCloudApp.Data;
|
|
using Refit;
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
|
|
|
public interface IWellOperationClient
|
|
{
|
|
private const string BaseRoute = "/api/well/{idWell}/wellOperations";
|
|
|
|
[Post(BaseRoute + "/{idType}/{deleteBeforeInsert}")]
|
|
Task<IApiResponse<int>> InsertRangeAsync(int idWell, int idType, bool deleteBeforeInsert, [Body] IEnumerable<WellOperationDto> dtos);
|
|
|
|
} |