public ApiHttpClientFileConfigurationRepository(
     IReRouteAppService reRouteAppService,
     IGlobalConfigurationAppService globalConfigurationAppService,
     IDynamicReRouteAppService dynamicReRouteAppService,
     IObjectMapper objectMapper)
 {
     _reRouteAppService             = reRouteAppService;
     _globalConfigurationAppService = globalConfigurationAppService;
     _dynamicReRouteAppService      = dynamicReRouteAppService;
     _objectMapper = objectMapper;
 }
Пример #2
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;
        }
Пример #4
0
 public DynamicReRouteController(
     IDynamicReRouteAppService dynamicReRouteAppService)
 {
     DynamicReRouteAppService = dynamicReRouteAppService;
 }