Exemplo n.º 1
0
 public AbstractPenController(
     ApiSettings settings,
     ILogger <AbstractPenController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPenService penService,
     IApiPenModelMapper penModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PenService     = penService;
     this.PenModelMapper = penModelMapper;
 }
Exemplo n.º 2
0
 public PenController(
     ApiSettings settings,
     ILogger <PenController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPenService penService,
     IApiPenModelMapper penModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            penService,
            penModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }