This commit is contained in:
mmrbnjd
2024-04-29 18:15:46 +03:30
parent 7b8127dc72
commit 319270d567
20 changed files with 356 additions and 96 deletions

View File

@@ -16,7 +16,7 @@ namespace Back.Data.Infrastructure.Repository
{
public class RepositoryBase<T> : IAsyncRepository<T> where T : class
{
protected readonly SqlDbContext _dbContext;
public readonly SqlDbContext _dbContext;
private DbSet<T> _query;
public RepositoryBase(SqlDbContext dbContext)
{