public SpecialTypesFixture()
        {
            var baseUri = new Uri("http://localhost:5000/");

            httpClient = new System.Net.Http.HttpClient();

            Api = new DemoCoreWeb.Controllers.Client.SpecialTypes(httpClient, baseUri);
        }
 public SpecialTypesFixture()
 {
     Api = new DemoCoreWeb.Controllers.Client.SpecialTypes(HttpClient);
 }
Esempio n. 3
0
 public SpecialTypesFixture()
 {
     HttpClient.BaseAddress = BaseUri;
     Api = new DemoCoreWeb.Controllers.Client.SpecialTypes(HttpClient);
 }