コード例 #1
0
 public KickstartServiceImpl(IConfiguration configuration, IMediatorExecutor executor, IFlywayFileNameService flywayFileNameService, IDbToKSolutionConverter dbToKSolutionConverter, ICTableToDmsRuleConverter cTableToDmsRuleConverter, ISqlServerTablesReader sqlServerTablesReader)
 {
     _configuration            = configuration;
     _executor                 = executor;
     _flywayFileNameService    = flywayFileNameService;
     _dbToKSolutionConverter   = dbToKSolutionConverter;
     _cTableToDmsRuleConverter = cTableToDmsRuleConverter;
     _sqlServerTablesReader    = sqlServerTablesReader;
 }
コード例 #2
0
 public SharebuilderRateServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #3
0
 public InventoryGuideServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #4
0
 public SellerRatingServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #5
0
 public RatingCurationServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #6
0
 public KickstartBuildServiceImpl(IMediatorExecutor executor, AuthenticationSettings authSettings)
 {
     _executor     = executor;
     _authSettings = authSettings;
 }
コード例 #7
0
 public TrafficStatisticServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #8
0
 public SellableInventoryMartServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #9
0
 public CuratedRatingServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #10
0
 public RateCardManagerServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #11
0
 public ExcelRateCardImportServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #12
0
 public RateCardConfirmationServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #13
0
 public AvailServiceImpl(IMediatorExecutor executor)
 {
     _executor = executor;
 }
コード例 #14
0
 public HealthServiceImpl(IMediatorExecutor executor, ILogger <HealthServiceImpl> logger)
 {
     _executor = executor;
     _logger   = logger;
 }