Ejemplo n.º 1
0
 public AbstractVenueController(
     ApiSettings settings,
     ILogger <AbstractVenueController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVenueService venueService,
     IApiVenueModelMapper venueModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VenueService     = venueService;
     this.VenueModelMapper = venueModelMapper;
 }
Ejemplo n.º 2
0
 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;
 }