예제 #1
0
 public EfRepository(IdentityDbContext dbContext, ICurrentUser currentUser) : base(dbContext, currentUser)
 {
     DbContext   = dbContext;
     CurrentUser = currentUser;
 }
예제 #2
0
 public EfRepository(IdentityDbContext dbContext)
 {
     DbContext = dbContext;
 }
예제 #3
0
 public EfRepository(IdentityDbContext dbContext, IMapper mapper)
 {
     DbContext = dbContext;
     Mapper    = mapper;
 }
예제 #4
0
 public EfUnitOfWork(IdentityDbContext dbContext)
 {
     _dbContext = dbContext;
 }