public UserSqlServerRepository(CoreAuthDbContext context, IConfiguration configuration) : base(context) { _context = context; _configuration = configuration; }
public CustomerMemberSqlServerRepository(CoreAuthDbContext context) : base(context) { _context = context; }
public Repository(CoreAuthDbContext context) { Db = context; DbSet = Db.Set <TEntity>(); }