public AbstractTenantVariableController(
     ApiSettings settings,
     ILogger <AbstractTenantVariableController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITenantVariableService tenantVariableService,
     IApiTenantVariableModelMapper tenantVariableModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TenantVariableService     = tenantVariableService;
     this.TenantVariableModelMapper = tenantVariableModelMapper;
 }
Exemplo n.º 2
0
 public TenantVariableController(
     ApiSettings settings,
     ILogger <TenantVariableController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITenantVariableService tenantVariableService,
     IApiTenantVariableModelMapper tenantVariableModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            tenantVariableService,
            tenantVariableModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }