Exemplo n.º 1
0
 public EfRepository(IdentityDbContext dbContext, ICurrentUser currentUser) : base(dbContext, currentUser)
 {
     DbContext   = dbContext;
     CurrentUser = currentUser;
 }
Exemplo n.º 2
0
 public EfRepository(IdentityDbContext dbContext)
 {
     DbContext = dbContext;
 }
Exemplo n.º 3
0
 public EfRepository(IdentityDbContext dbContext, IMapper mapper)
 {
     DbContext = dbContext;
     Mapper    = mapper;
 }
Exemplo n.º 4
0
 public EfUnitOfWork(IdentityDbContext dbContext)
 {
     _dbContext = dbContext;
 }