Exemplo n.º 1
0
 public BaseRepository()
 {
     _dbContext = SEDbContextManager.GetDbContext();
 }
Exemplo n.º 2
0
 public SEUnitOfWork()
 {
     _dbContext = SEDbContextManager.GetDbContext();
 }
Exemplo n.º 3
0
 public BaseRepository(string name)
 {
     _dbContext = SEDbContextManager.GetDbContext(name);
 }
Exemplo n.º 4
0
 public SEUnitOfWork(string connectionName)
 {
     _dbContext = SEDbContextManager.GetDbContext(connectionName);
 }