public AbstractCountryRegionController(
     ApiSettings settings,
     ILogger <AbstractCountryRegionController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICountryRegionService countryRegionService,
     IApiCountryRegionModelMapper countryRegionModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CountryRegionService     = countryRegionService;
     this.CountryRegionModelMapper = countryRegionModelMapper;
 }
예제 #2
0
 public CountryRegionController(
     ApiSettings settings,
     ILogger <CountryRegionController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICountryRegionService countryRegionService,
     IApiCountryRegionModelMapper countryRegionModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            countryRegionService,
            countryRegionModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }