Ejemplo n.º 1
0
 public AbstractPersonController(
     ApiSettings settings,
     ILogger <AbstractPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPersonService personService,
     IApiPersonModelMapper personModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PersonService     = personService;
     this.PersonModelMapper = personModelMapper;
 }
Ejemplo n.º 2
0
 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;
 }