public AbstractVenueController( ApiSettings settings, ILogger <AbstractVenueController> logger, ITransactionCoordinator transactionCoordinator, IVenueService venueService, IApiVenueModelMapper venueModelMapper ) : base(settings, logger, transactionCoordinator) { this.VenueService = venueService; this.VenueModelMapper = venueModelMapper; }
public VenueController( ApiSettings settings, ILogger <VenueController> logger, ITransactionCoordinator transactionCoordinator, IVenueService venueService, IApiVenueModelMapper venueModelMapper ) : base(settings, logger, transactionCoordinator, venueService, venueModelMapper) { this.BulkInsertLimit = 250; this.MaxLimit = 1000; this.DefaultLimit = 250; }