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