using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Persistence.Repositories; public abstract class AbstractChangeLogRepository : IChangeLogRepository { public Task Clear(int idUser, TRequest request, CancellationToken token) { throw new NotImplementedException(); } public Task ClearAndInsertRange(int idUser, TRequest request, IEnumerable dtos, CancellationToken token) { throw new NotImplementedException(); } public Task> GetCurrent(TRequest request, CancellationToken token) { throw new NotImplementedException(); } public Task> GetDatesChange(TRequest request, CancellationToken token) { throw new NotImplementedException(); } public Task> GetGtDate(DateTimeOffset date, CancellationToken token) { throw new NotImplementedException(); } public Task InsertRange(int idUser, IEnumerable dtos, CancellationToken token) { throw new NotImplementedException(); } public Task MarkAsDeleted(int idUser, IEnumerable ids, CancellationToken token) { throw new NotImplementedException(); } public Task UpdateOrInsertRange(int idUser, IEnumerable dtos, CancellationToken token) { throw new NotImplementedException(); } public Task UpdateRange(int idUser, IEnumerable dtos, CancellationToken token) { throw new NotImplementedException(); } }