using DMS.Core.Interfaces.Repositories; using DMS.Core.Models; using DMS.Infrastructure.Data; using DMS.Infrastructure.Entities; namespace DMS.Infrastructure.Repositories; public class VariableHistoryRepository : BaseRepository, IVariableHistoryRepository { public VariableHistoryRepository(SqlSugarDbContext dbContext) : base(dbContext) { } public async Task GetByIdAsync(int id) => throw new NotImplementedException(); public async Task> GetAllAsync() => throw new NotImplementedException(); public async Task AddAsync(VariableHistory entity) => throw new NotImplementedException(); public async Task UpdateAsync(VariableHistory entity) => throw new NotImplementedException(); public async Task DeleteAsync(VariableHistory entity) => throw new NotImplementedException(); }