コード例 #1
0
 public ToutiaoAdvertAccountSyncor(IProductManager productManager,
                                   IWebUrlService webUrlService,
                                   IAdvertAccountManager advertAccountService,
                                   IAdvertDailyStatisticManager advertDailyStatisticManager,
                                   ILogger logger,
                                   IDateTimeHelper dateTimeHelper)
 {
     this._webUrlService               = webUrlService;
     this._productManager              = productManager;
     this._advertAccountManager        = advertAccountService;
     this._advertDailyStatisticManager = advertDailyStatisticManager;
     this._logger         = logger;
     this._dateTimeHelper = dateTimeHelper;
 }
コード例 #2
0
 public TenantAdvertAccountSyncor(IProductManager productManager,
                                  IWebUrlService webUrlService,
                                  IAdvertAccountManager advertAccountService,
                                  IAdvertDailyStatisticManager advertDailyStatisticManager,
                                  ILogger logger,
                                  IOrderImportor orderImportor,
                                  IDateTimeHelper dateTimeHelper,
                                  ILogisticsManager logisticsManager)
 {
     this._webUrlService               = webUrlService;
     this._productManager              = productManager;
     this._advertAccountManager        = advertAccountService;
     this._advertDailyStatisticManager = advertDailyStatisticManager;
     this._orderImportor               = orderImportor;
     this._logger           = logger;
     this._dateTimeHelper   = dateTimeHelper;
     this._logisticsManager = logisticsManager;
 }
コード例 #3
0
 public AdvertStatisticAppService(IAdvertDailyStatisticManager advertDailyStatisticManager)
 {
     this._advertDailyStatisticManager = advertDailyStatisticManager;
 }