public AbstractVendorController(
     ApiSettings settings,
     ILogger <AbstractVendorController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVendorService vendorService,
     IApiVendorModelMapper vendorModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VendorService     = vendorService;
     this.VendorModelMapper = vendorModelMapper;
 }
예제 #2
0
 public VendorController(
     ApiSettings settings,
     ILogger <VendorController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVendorService vendorService,
     IApiVendorModelMapper vendorModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            vendorService,
            vendorModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }