Exemplo n.º 1
0
 public StudyWorkflowDefinitionRepositoryApiClient(string baseUrl, System.Net.Http.HttpClient httpClient)
 {
     BaseUrl     = baseUrl;
     _httpClient = httpClient;
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 2
0
 public CompanyClient(string baseUrl, System.Net.Http.HttpClient httpClient)
 {
     BaseUrl     = baseUrl;
     _httpClient = httpClient;
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 3
0
 public WorkloadClient(System.Net.Http.HttpClient httpClient)
 {
     _httpClient = httpClient;
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 4
0
 public ClientForIndexLogin(System.Net.Http.HttpClient httpClient)
 {
     _httpClient = httpClient;
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 5
0
 public Client(IHttpClientFactory httpClientFactory)
 {
     _httpClient = httpClientFactory.CreateClient("MsContenido");
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 6
0
 public AktivitaClient()
 {
     _settings = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 7
0
 public WeatherForecastClient(KS.Applications.WebUI.Api.WebApiClientConfiguration configuration, System.Net.Http.HttpClient httpClient) : base(configuration)
 {
     _httpClient = httpClient;
     _settings   = new System.Lazy <Newtonsoft.Json.JsonSerializerSettings>(CreateSerializerSettings);
 }
Exemplo n.º 8
0
 static DALManagerSingleton()
 {
     lazy = new System.Lazy <DALManager>(() => new DALManager());
 }