Ejemplo n.º 1
0
 public AbstractFollowingController(
     ApiSettings settings,
     ILogger <AbstractFollowingController> logger,
     ITransactionCoordinator transactionCoordinator,
     IFollowingService followingService,
     IApiFollowingModelMapper followingModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.FollowingService     = followingService;
     this.FollowingModelMapper = followingModelMapper;
 }
Ejemplo n.º 2
0
 public FollowingController(
     ApiSettings settings,
     ILogger <FollowingController> logger,
     ITransactionCoordinator transactionCoordinator,
     IFollowingService followingService,
     IApiFollowingModelMapper followingModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            followingService,
            followingModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }