Esempio n. 1
0
 public AbstractPostHistoryTypeController(
     ApiSettings settings,
     ILogger <AbstractPostHistoryTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostHistoryTypeService postHistoryTypeService,
     IApiPostHistoryTypeModelMapper postHistoryTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PostHistoryTypeService     = postHistoryTypeService;
     this.PostHistoryTypeModelMapper = postHistoryTypeModelMapper;
 }
Esempio n. 2
0
 public PostHistoryTypeController(
     ApiSettings settings,
     ILogger <PostHistoryTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostHistoryTypeService postHistoryTypeService,
     IApiPostHistoryTypeModelMapper postHistoryTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            postHistoryTypeService,
            postHistoryTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }