public AbstractStoreController(
     ApiSettings settings,
     ILogger <AbstractStoreController> logger,
     ITransactionCoordinator transactionCoordinator,
     IStoreService storeService,
     IApiStoreModelMapper storeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.StoreService     = storeService;
     this.StoreModelMapper = storeModelMapper;
 }
Esempio n. 2
0
 public StoreController(
     ApiSettings settings,
     ILogger <StoreController> logger,
     ITransactionCoordinator transactionCoordinator,
     IStoreService storeService,
     IApiStoreModelMapper storeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            storeService,
            storeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }