Exemplo n.º 1
0
 public TestControllerCaller(string apiUrl, DataFormat dataFormat = DataFormat.Json)
 {
     _caller = new WebApiCaller(apiUrl, dataFormat);
 }
Exemplo n.º 2
0
 public TestControllerCaller(WebApiCaller webApiCaller)
 {
     _caller = webApiCaller;
 }
Exemplo n.º 3
0
 static Program()
 {
     _webApiCaller = new WebApiCaller(Url);
 }