using Microsoft.EntityFrameworkCore; namespace SVSim.Database.Repositories; public abstract class BaseRepository where T : class { protected readonly SVSimDbContext DbContext; protected readonly DbSet DbSet; public BaseRepository(SVSimDbContext dbContext) { DbContext = dbContext; DbSet = DbContext.Set(); } }