public TestControllerCaller(string apiUrl, DataFormat dataFormat = DataFormat.Json) { _caller = new WebApiCaller(apiUrl, dataFormat); }
public TestControllerCaller(WebApiCaller webApiCaller) { _caller = webApiCaller; }
static Program() { _webApiCaller = new WebApiCaller(Url); }