コード例 #1
0
 public AbstractSalesPersonController(
     ApiSettings settings,
     ILogger <AbstractSalesPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISalesPersonService salesPersonService,
     IApiSalesPersonModelMapper salesPersonModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.SalesPersonService     = salesPersonService;
     this.SalesPersonModelMapper = salesPersonModelMapper;
 }
コード例 #2
0
 public SalesPersonController(
     ApiSettings settings,
     ILogger <SalesPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     ISalesPersonService salesPersonService,
     IApiSalesPersonModelMapper salesPersonModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            salesPersonService,
            salesPersonModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }