Exemplo n.º 1
0
 internal FreshdeskContactsEndpoint(FreshdeskConfigInternal config, FreshdeskHttpClient httpClient, JsonSerializerSettings serializationSettings)
 {
     _apiBaseUri            = config.ApiBaseUri;
     _httpClient            = httpClient;
     _serializationSettings = serializationSettings;
 }
Exemplo n.º 2
0
 public FreshdeskClient(FreshdeskConfig config)
 {
     _httpClient = InitHttpClient(config);
     InitEndpoints(FreshdeskConfigInternal.FromConfig(config));
 }