public AbstractCustomerController(
     ApiSettings settings,
     ILogger <AbstractCustomerController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICustomerService customerService,
     IApiCustomerModelMapper customerModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CustomerService     = customerService;
     this.CustomerModelMapper = customerModelMapper;
 }
Esempio n. 2
0
 public CustomerController(
     ApiSettings settings,
     ILogger <CustomerController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICustomerService customerService,
     IApiCustomerModelMapper customerModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            customerService,
            customerModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }