public PlacementService(IRepositoryAsync <Placement> placementRepositoryAsync, IStrategyService strategyService, ICreativeService creativeService, IClock clock, IBrandscreenContext brandscreenContext) { _placementRepositoryAsync = placementRepositoryAsync; _strategyService = strategyService; _creativeService = creativeService; _clock = clock; _brandscreenContext = brandscreenContext; }
public CreativeSizeService(IRepositoryAsync <CreativeSize> creativeSizeRepositoryAsync, IBrandscreenContext brandscreenContext, ICacheManager cacheManager, IClock clock, ISignals signals) { _creativeSizeRepositoryAsync = creativeSizeRepositoryAsync; _brandscreenContext = brandscreenContext; _cacheManager = cacheManager; _clock = clock; _signals = signals; }
public StrategyService(IRepositoryAsync <AdGroup> adGroupRepositoryAsync, IRepositoryAsync <Campaign> campaignRepositoryAsync, IBrandscreenContext brandscreenContext, IClock clock, IStrategySettings strategySettings) { _adGroupRepositoryAsync = adGroupRepositoryAsync; _campaignRepositoryAsync = campaignRepositoryAsync; _brandscreenContext = brandscreenContext; _clock = clock; _strategySettings = strategySettings; }
public UserService(IServiceBus serviceBus, IAccountService accountService, IBrandscreenContext brandscreenContext, IRepositoryAsync <User> userRepositoryAsync, IRepositoryAsync <UserBuyerRole> userBuyerRoleRepositoryAsync, ApplicationUserManager applicationUserManager) { _serviceBus = serviceBus; _accountService = accountService; _brandscreenContext = brandscreenContext; _userRepositoryAsync = userRepositoryAsync; _userBuyerRoleRepositoryAsync = userBuyerRoleRepositoryAsync; _applicationUserManager = applicationUserManager; }
public StrategyTargetingUpdateService(IRepositoryAsync <AdGroup> adGroupRepositoryAsync, IBrandscreenContext brandscreenContext, ILifetimeScope container) { _adGroupRepositoryAsync = adGroupRepositoryAsync; _brandscreenContext = brandscreenContext; _container = container; }
public BrandService(IBrandscreenContext brandscreenContext, IRepositoryAsync <AdvertiserProduct> advertiserProductRepositoryAsync, IClock clock) { _brandscreenContext = brandscreenContext; _advertiserProductRepositoryAsync = advertiserProductRepositoryAsync; _clock = clock; }
public CampaignService(IBrandscreenContext brandscreenContext, IRepositoryAsync <Campaign> compaignAsyncRepository, IClock clock) { _brandscreenContext = brandscreenContext; _compaignAsyncRepository = compaignAsyncRepository; _clock = clock; }
public DoohService(IBrandscreenContext brandscreenContext, ILifetimeScope container) { _brandscreenContext = brandscreenContext; _container = container; }
public SegmentService(IRepositoryAsync <Segment> segmentRepositoryAsync, IBrandscreenContext brandscreenContext, IClock clock) { _segmentRepositoryAsync = segmentRepositoryAsync; _brandscreenContext = brandscreenContext; _clock = clock; }
public AccountService(IBrandscreenContext brandscreenContext, IRepositoryAsync <BuyerAccount> buyerAccountRepositoryAsync, IClock clock) { _brandscreenContext = brandscreenContext; _buyerAccountRepositoryAsync = buyerAccountRepositoryAsync; _clock = clock; }
public DealService(IRepositoryAsync <Deal> dealRepositoryAsync, IBrandscreenContext brandscreenContext, IClock clock) { _dealRepositoryAsync = dealRepositoryAsync; _brandscreenContext = brandscreenContext; _clock = clock; }