Esempio n. 1
0
		public AbstractPostTypeController(
			ApiSettings settings,
			ILogger<AbstractPostTypeController> logger,
			ITransactionCoordinator transactionCoordinator,
			IPostTypeService postTypeService,
			IApiPostTypeModelMapper postTypeModelMapper
			)
			: base(settings, logger, transactionCoordinator)
		{
			this.PostTypeService = postTypeService;
			this.PostTypeModelMapper = postTypeModelMapper;
		}
Esempio n. 2
0
 public PostTypeController(
     ApiSettings settings,
     ILogger <PostTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostTypeService postTypeService,
     IApiPostTypeModelMapper postTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            postTypeService,
            postTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }