Olga Nemt
828864c112
- Persistence.API - Persistence.Database - Persistence.Repository - Persistence.IntegrationTests
17 lines
421 B
C#
17 lines
421 B
C#
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<TDto>
|
|
where TDto : class, new()
|
|
{
|
|
[Post("/api/dataSaub")]
|
|
Task<IApiResponse<int>> InsertRangeAsync(IEnumerable<TDto> dtos);
|
|
}
|