public AbstractPostTypesController(
     ApiSettings settings,
     ILogger <AbstractPostTypesController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostTypesService postTypesService,
     IApiPostTypesModelMapper postTypesModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PostTypesService     = postTypesService;
     this.PostTypesModelMapper = postTypesModelMapper;
 }
Ejemplo n.º 2
0
 public PostTypesController(
     ApiSettings settings,
     ILogger <PostTypesController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostTypesService postTypesService,
     IApiPostTypesModelMapper postTypesModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            postTypesService,
            postTypesModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }