public ExampleTester()
 {
     _client = ApiClientFactory.GetClient<IExampleClient>();
 }
Exemplo n.º 2
0
 public ExampleTester()
 {
     _client = ApiClientFactory.GetClient <IExampleClient>();
 }
 public ExampleCommandHandler(IExampleRepository characterRepository, IExampleClient exampleClient)
 {
     _exampleRepository = characterRepository;
     _exampleClient     = exampleClient;
 }
Exemplo n.º 4
0
 public ExampleController(IExampleClient client)
 {
     _client = client;
 }
Exemplo n.º 5
0
        public ExampleTester()
        {
            var config = TestConfig.Instance;

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