Beispiel #1
0
 public AbstractPersonRefController(
     ApiSettings settings,
     ILogger <AbstractPersonRefController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPersonRefService personRefService,
     IApiPersonRefModelMapper personRefModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PersonRefService     = personRefService;
     this.PersonRefModelMapper = personRefModelMapper;
 }
Beispiel #2
0
 public PersonRefController(
     ApiSettings settings,
     ILogger <PersonRefController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPersonRefService personRefService,
     IApiPersonRefModelMapper personRefModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            personRefService,
            personRefModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }