Ejemplo n.º 1
0
 public AbstractSaleController(
     ApiSettings settings,
     ILogger <AbstractSaleController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISaleService saleService,
     IApiSaleModelMapper saleModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.SaleService     = saleService;
     this.SaleModelMapper = saleModelMapper;
 }
Ejemplo n.º 2
0
 public SaleController(
     ApiSettings settings,
     ILogger <SaleController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISaleService saleService,
     IApiSaleModelMapper saleModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            saleService,
            saleModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }