public ChannelAttributesRepository(AttributionDb dbContext, IMapper mapper) { _dbContext = dbContext; _mapper = mapper; }
public UserActionRepository(AttributionDb dbContext) { _dbContext = dbContext; }
public UrlReferrerRepository(AttributionDb dbContext, IDistributedCache distributedCache) { _dbContext = dbContext; _distributedCache = distributedCache; }
public ChannelRepository(AttributionDb dbContext, IDistributedCache distributedCache, IMapper mapper) { _dbContext = dbContext; _distributedCache = distributedCache; _mapper = mapper; }