Exemplo n.º 1
0
 public AbstractVEventController(
     ApiSettings settings,
     ILogger <AbstractVEventController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVEventService vEventService,
     IApiVEventModelMapper vEventModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VEventService     = vEventService;
     this.VEventModelMapper = vEventModelMapper;
 }
Exemplo n.º 2
0
 public VEventController(
     ApiSettings settings,
     ILogger <VEventController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVEventService vEventService,
     IApiVEventModelMapper vEventModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            vEventService,
            vEventModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }