public SqlUnitOfWork(IWebApplicationConfig config) { _config = config; _sqlDbContext = new SqlDbContext(_config); }
public SqlRepository(SqlDbContext context) { _context = context; _dbSet = _context.Set <TEntity>(); }