Exemplo n.º 1
0
 public SpecificationRepository(ExampleDbContext dbContext, IMapper <TEntity, TModel> mapper) : base(dbContext, mapper)
 {
 }
Exemplo n.º 2
0
 public Repository(ExampleDbContext dbContext, IMapper <TEntity, TModel> mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }