public AbstractPersonController( ApiSettings settings, ILogger <AbstractPersonController> logger, ITransactionCoordinator transactionCoordinator, IPersonService personService, IApiPersonModelMapper personModelMapper ) : base(settings, logger, transactionCoordinator) { this.PersonService = personService; this.PersonModelMapper = personModelMapper; }
public PersonController( ApiSettings settings, ILogger <PersonController> logger, ITransactionCoordinator transactionCoordinator, IPersonService personService, IApiPersonModelMapper personModelMapper ) : base(settings, logger, transactionCoordinator, personService, personModelMapper) { this.BulkInsertLimit = 250; this.MaxLimit = 1000; this.DefaultLimit = 250; }