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> InsertRangeAsync(int idWell, int idType, bool deleteBeforeInsert, [Body] IEnumerable dtos); }