Esempio n. 1
0
 public AbstractSalesPersonQuotaHistoryController(
     ApiSettings settings,
     ILogger <AbstractSalesPersonQuotaHistoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISalesPersonQuotaHistoryService salesPersonQuotaHistoryService,
     IApiSalesPersonQuotaHistoryModelMapper salesPersonQuotaHistoryModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.SalesPersonQuotaHistoryService     = salesPersonQuotaHistoryService;
     this.SalesPersonQuotaHistoryModelMapper = salesPersonQuotaHistoryModelMapper;
 }
Esempio n. 2
0
 public SalesPersonQuotaHistoryController(
     ApiSettings settings,
     ILogger <SalesPersonQuotaHistoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISalesPersonQuotaHistoryService salesPersonQuotaHistoryService,
     IApiSalesPersonQuotaHistoryModelMapper salesPersonQuotaHistoryModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            salesPersonQuotaHistoryService,
            salesPersonQuotaHistoryModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }