public AbstractTestAllFieldTypeController(
     ApiSettings settings,
     ILogger <AbstractTestAllFieldTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITestAllFieldTypeService testAllFieldTypeService,
     IApiTestAllFieldTypeModelMapper testAllFieldTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TestAllFieldTypeService     = testAllFieldTypeService;
     this.TestAllFieldTypeModelMapper = testAllFieldTypeModelMapper;
 }
 public TestAllFieldTypeController(
     ApiSettings settings,
     ILogger <TestAllFieldTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITestAllFieldTypeService testAllFieldTypeService,
     IApiTestAllFieldTypeModelMapper testAllFieldTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            testAllFieldTypeService,
            testAllFieldTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }