public AbstractErrorLogController( ApiSettings settings, ILogger <AbstractErrorLogController> logger, ITransactionCoordinator transactionCoordinator, IErrorLogService errorLogService, IApiErrorLogModelMapper errorLogModelMapper ) : base(settings, logger, transactionCoordinator) { this.ErrorLogService = errorLogService; this.ErrorLogModelMapper = errorLogModelMapper; }
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; }