Ejemplo n.º 1
0
 public OcelotConfigurationController(
     IGlobalConfigurationAppService globalConfigurationAppService,
     IDynamicReRouteAppService dynamicReRouteAppService,
     IAggregateReRouteAppService aggregateReRouteAppService,
     IReRouteAppService reRouteAppService)
 {
     _globalConfigurationAppService = globalConfigurationAppService;
     _aggregateReRouteAppService    = aggregateReRouteAppService;
     _dynamicReRouteAppService      = dynamicReRouteAppService;
     _reRouteAppService             = reRouteAppService;
 }
        public ApiHttpClientFileConfigurationRepository(
            IObjectMapper objectMapper,
            IOptions <ApiGatewayOptions> options,
            IReRouteAppService reRouteAppService,
            IDynamicReRouteAppService dynamicReRouteAppService,
            IAggregateReRouteAppService aggregateReRouteAppServicem,
            IGlobalConfigurationAppService globalConfigurationAppService
            )
        {
            _objectMapper                  = objectMapper;
            _reRouteAppService             = reRouteAppService;
            _dynamicReRouteAppService      = dynamicReRouteAppService;
            _aggregateReRouteAppService    = aggregateReRouteAppServicem;
            _globalConfigurationAppService = globalConfigurationAppService;

            ApiGatewayOptions = options.Value;
        }
 public AggregateReRouteController(
     IAggregateReRouteAppService aggregateReRouteAppService)
 {
     AggregateReRouteAppService = aggregateReRouteAppService;
 }