コード例 #1
0
 public ChannelAttributesRepository(AttributionDb dbContext, IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
コード例 #2
0
 public UserActionRepository(AttributionDb dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #3
0
 public UrlReferrerRepository(AttributionDb dbContext, IDistributedCache distributedCache)
 {
     _dbContext        = dbContext;
     _distributedCache = distributedCache;
 }
コード例 #4
0
 public ChannelRepository(AttributionDb dbContext, IDistributedCache distributedCache, IMapper mapper)
 {
     _dbContext        = dbContext;
     _distributedCache = distributedCache;
     _mapper           = mapper;
 }