public AbstractFollowerController(
     ApiSettings settings,
     ILogger <AbstractFollowerController> logger,
     ITransactionCoordinator transactionCoordinator,
     IFollowerService followerService,
     IApiFollowerModelMapper followerModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.FollowerService     = followerService;
     this.FollowerModelMapper = followerModelMapper;
 }
Beispiel #2
0
 public FollowerController(
     ApiSettings settings,
     ILogger <FollowerController> logger,
     ITransactionCoordinator transactionCoordinator,
     IFollowerService followerService,
     IApiFollowerModelMapper followerModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            followerService,
            followerModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }