public AbstractSchemaAPersonController(
     ApiSettings settings,
     ILogger <AbstractSchemaAPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISchemaAPersonService schemaAPersonService,
     IApiSchemaAPersonModelMapper schemaAPersonModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.SchemaAPersonService     = schemaAPersonService;
     this.SchemaAPersonModelMapper = schemaAPersonModelMapper;
 }
Exemplo n.º 2
0
 public SchemaAPersonController(
     ApiSettings settings,
     ILogger <SchemaAPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISchemaAPersonService schemaAPersonService,
     IApiSchemaAPersonModelMapper schemaAPersonModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            schemaAPersonService,
            schemaAPersonModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }