public AbstractChannelController(
     ApiSettings settings,
     ILogger <AbstractChannelController> logger,
     ITransactionCoordinator transactionCoordinator,
     IChannelService channelService,
     IApiChannelModelMapper channelModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ChannelService     = channelService;
     this.ChannelModelMapper = channelModelMapper;
 }
示例#2
0
 public ChannelController(
     ApiSettings settings,
     ILogger <ChannelController> logger,
     ITransactionCoordinator transactionCoordinator,
     IChannelService channelService,
     IApiChannelModelMapper channelModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            channelService,
            channelModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }