示例#1
0
 public AbstractEventController(
     ApiSettings settings,
     ILogger <AbstractEventController> logger,
     ITransactionCoordinator transactionCoordinator,
     IEventService eventService,
     IApiEventModelMapper eventModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.EventService     = eventService;
     this.EventModelMapper = eventModelMapper;
 }
示例#2
0
 public EventController(
     ApiSettings settings,
     ILogger <EventController> logger,
     ITransactionCoordinator transactionCoordinator,
     IEventService eventService,
     IApiEventModelMapper eventModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            eventService,
            eventModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }