public AbstractErrorLogController(
     ApiSettings settings,
     ILogger <AbstractErrorLogController> logger,
     ITransactionCoordinator transactionCoordinator,
     IErrorLogService errorLogService,
     IApiErrorLogModelMapper errorLogModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ErrorLogService     = errorLogService;
     this.ErrorLogModelMapper = errorLogModelMapper;
 }
Пример #2
0
 public ErrorLogController(
     ApiSettings settings,
     ILogger <ErrorLogController> logger,
     ITransactionCoordinator transactionCoordinator,
     IErrorLogService errorLogService,
     IApiErrorLogModelMapper errorLogModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            errorLogService,
            errorLogModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }