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