public AbstractVEventController( ApiSettings settings, ILogger <AbstractVEventController> logger, ITransactionCoordinator transactionCoordinator, IVEventService vEventService, IApiVEventModelMapper vEventModelMapper ) : base(settings, logger, transactionCoordinator) { this.VEventService = vEventService; this.VEventModelMapper = vEventModelMapper; }
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; }