public AbstractTestAllFieldTypesNullableController(
     ApiSettings settings,
     ILogger <AbstractTestAllFieldTypesNullableController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITestAllFieldTypesNullableService testAllFieldTypesNullableService,
     IApiTestAllFieldTypesNullableModelMapper testAllFieldTypesNullableModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TestAllFieldTypesNullableService     = testAllFieldTypesNullableService;
     this.TestAllFieldTypesNullableModelMapper = testAllFieldTypesNullableModelMapper;
 }
Esempio n. 2
0
 public TestAllFieldTypesNullableController(
     ApiSettings settings,
     ILogger <TestAllFieldTypesNullableController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITestAllFieldTypesNullableService testAllFieldTypesNullableService,
     IApiTestAllFieldTypesNullableModelMapper testAllFieldTypesNullableModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            testAllFieldTypesNullableService,
            testAllFieldTypesNullableModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }