using Microsoft.EntityFrameworkCore; using Persistence.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Persistence.Repositories; public abstract class AbstractTimeSeriesDataRepository : ITimeSeriesDataRepository where TDto : class, ITimeSeriesAbstractDto where TEntity : class, IChangeLogAbstract { private readonly DbContext dbContext; protected AbstractTimeSeriesDataRepository(DbContext dbContext) { this.dbContext = dbContext; } public Task> GetAsync(DateTimeOffset dateBegin, DateTimeOffset dateEnd, CancellationToken token) { throw new NotImplementedException(); } public Task GetDatesRangeAsync(CancellationToken token) { throw new NotImplementedException(); } public Task> GetGtDate(DateTimeOffset date, CancellationToken token) { throw new NotImplementedException(); } public Task InsertRange(IEnumerable dtos, CancellationToken token) { throw new NotImplementedException(); } }