Example #1
0
 public AbstractTweetController(
     ApiSettings settings,
     ILogger <AbstractTweetController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITweetService tweetService,
     IApiTweetModelMapper tweetModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TweetService     = tweetService;
     this.TweetModelMapper = tweetModelMapper;
 }
Example #2
0
 public TweetController(
     ApiSettings settings,
     ILogger <TweetController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITweetService tweetService,
     IApiTweetModelMapper tweetModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            tweetService,
            tweetModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }