22 lines
836 B
C#
22 lines
836 B
C#
using Persistence.Models;
|
|
using Refit;
|
|
|
|
namespace Persistence.Client.Clients.Interfaces.Refit;
|
|
public interface IRefitTimeSeriesClient<TDto> : IDisposable
|
|
where TDto : class, new()
|
|
{
|
|
private const string BaseRoute = "/api/dataSaub";
|
|
|
|
[Post($"{BaseRoute}")]
|
|
Task<IApiResponse<int>> AddRange(IEnumerable<TDto> dtos, CancellationToken token);
|
|
|
|
[Get($"{BaseRoute}")]
|
|
Task<IApiResponse<IEnumerable<TDto>>> Get(DateTimeOffset dateBegin, DateTimeOffset dateEnd, CancellationToken token);
|
|
|
|
[Get($"{BaseRoute}/resampled")]
|
|
Task<IApiResponse<IEnumerable<TDto>>> GetResampledData(DateTimeOffset dateBegin, double intervalSec = 600d, int approxPointsCount = 1024, CancellationToken token = default);
|
|
|
|
[Get($"{BaseRoute}/datesRange")]
|
|
Task<IApiResponse<DatesRangeDto?>> GetDatesRange(CancellationToken token);
|
|
}
|