public UnitOfWork(AssociationsDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 2
0
 public WordRelsRepository(AssociationsDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Ejemplo n.º 3
0
 public Repository(AssociationsDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
     _dbSet   = context.Set <TEntity>();
 }