Пример #1
0
 internal FreshdeskContactsEndpoint(FreshdeskConfigInternal config, FreshdeskHttpClient httpClient, JsonSerializerSettings serializationSettings)
 {
     _apiBaseUri            = config.ApiBaseUri;
     _httpClient            = httpClient;
     _serializationSettings = serializationSettings;
 }
Пример #2
0
 public FreshdeskClient(FreshdeskConfig config)
 {
     _httpClient = InitHttpClient(config);
     InitEndpoints(FreshdeskConfigInternal.FromConfig(config));
 }