Пример #1
0
 public GiftcodeAppService(ILogger <GiftcodeAppService> logger, IGiftcodeService giftcodeService, IShardingService shardingService, ICurrentContext currentContext)
 {
     _logger          = logger;
     _giftcodeService = giftcodeService;
     _shardingService = shardingService;
     _currentContext  = currentContext;
 }
 public FileCommandHandler(IFileRepository fileRepository, IShardingService shardingService)
 {
     _fileRepository  = fileRepository;
     _shardingService = shardingService;
 }
 public GiftcodeCommandHandler(IEventSender eventSender, IShardingService shardingService, IGiftcodeService giftcodeService)
 {
     _eventSender     = eventSender;
     _shardingService = shardingService;
     _giftcodeService = giftcodeService;
 }
Пример #4
0
 public ShardmapManager(IConfiguration configuration, IShardingService shardingService)
 {
     _configuration   = configuration;
     _shardingService = shardingService;
 }
Пример #5
0
 public ShardingAppService(IShardingService shardingService, ILogger <ShardingAppService> logger)
 {
     _shardingService = shardingService;
     _logger          = logger;
 }
 public CartCommandHandler(ICartService cartService, IShardingService shardingService, IEventSender eventSender)
 {
     _cartService     = cartService;
     _shardingService = shardingService;
     _eventSender     = eventSender;
 }