示例#1
0
 public ColorRepository(CloudNineEcomDbContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
     _mapper = mapper;
 }
示例#2
0
 public RepositoryBase(CloudNineEcomDbContext dbContext, IMapper mapper)
 {
     this.DatabaseContext = dbContext;
     _mapper = mapper;
 }
示例#3
0
 public RepositoryWrapper(CloudNineEcomDbContext dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }