using Microsoft.AspNetCore.Mvc; using Persistence.Repository.Data; using Refit; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Persistence.IntegrationTests.Clients; public interface ITimeSeriesClient where TDto : class, new() { [Post("/api/dataSaub")] Task> InsertRangeAsync(IEnumerable dtos); }