Ejemplo n.º 1
0
 public AbstractProxyController(
     ApiSettings settings,
     ILogger <AbstractProxyController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProxyService proxyService,
     IApiProxyModelMapper proxyModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ProxyService     = proxyService;
     this.ProxyModelMapper = proxyModelMapper;
 }
Ejemplo n.º 2
0
 public ProxyController(
     ApiSettings settings,
     ILogger <ProxyController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProxyService proxyService,
     IApiProxyModelMapper proxyModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            proxyService,
            proxyModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }