예제 #1
0
 public UserSqlServerRepository(CoreAuthDbContext context,
                                IConfiguration configuration) : base(context)
 {
     _context       = context;
     _configuration = configuration;
 }
예제 #2
0
 public CustomerMemberSqlServerRepository(CoreAuthDbContext context) : base(context)
 {
     _context = context;
 }
예제 #3
0
 public Repository(CoreAuthDbContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }