public AbstractLifecycleController(
     ApiSettings settings,
     ILogger <AbstractLifecycleController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILifecycleService lifecycleService,
     IApiLifecycleModelMapper lifecycleModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LifecycleService     = lifecycleService;
     this.LifecycleModelMapper = lifecycleModelMapper;
 }
Exemplo n.º 2
0
 public LifecycleController(
     ApiSettings settings,
     ILogger <LifecycleController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILifecycleService lifecycleService,
     IApiLifecycleModelMapper lifecycleModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            lifecycleService,
            lifecycleModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }