public AbstractSchemaBPersonController( ApiSettings settings, ILogger <AbstractSchemaBPersonController> logger, ITransactionCoordinator transactionCoordinator, ISchemaBPersonService schemaBPersonService, IApiSchemaBPersonModelMapper schemaBPersonModelMapper ) : base(settings, logger, transactionCoordinator) { this.SchemaBPersonService = schemaBPersonService; this.SchemaBPersonModelMapper = schemaBPersonModelMapper; }
public SchemaBPersonController( ApiSettings settings, ILogger <SchemaBPersonController> logger, ITransactionCoordinator transactionCoordinator, ISchemaBPersonService schemaBPersonService, IApiSchemaBPersonModelMapper schemaBPersonModelMapper ) : base(settings, logger, transactionCoordinator, schemaBPersonService, schemaBPersonModelMapper) { this.BulkInsertLimit = 250; this.MaxLimit = 1000; this.DefaultLimit = 250; }