public ExampleTester()
 {
     _client = ApiClientFactory.GetClient<IExampleClient>();
 }
Пример #2
0
 public ExampleTester()
 {
     _client = ApiClientFactory.GetClient <IExampleClient>();
 }
 public ExampleCommandHandler(IExampleRepository characterRepository, IExampleClient exampleClient)
 {
     _exampleRepository = characterRepository;
     _exampleClient     = exampleClient;
 }
Пример #4
0
 public ExampleController(IExampleClient client)
 {
     _client = client;
 }
Пример #5
0
        public ExampleTester()
        {
            var config = TestConfig.Instance;

            _client = ApiClientFactory.GetClient <IExampleClient>(config.ApiUrl);
        }