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