using DigitalData.Core.Abstractions.Client; using EnvelopeGenerator.Application.Configurations.GtxMessaging; namespace EnvelopeGenerator.Application.Services { public class GtxMessagingService { private readonly IHttpClientService _smsClient; public GtxMessagingService(IHttpClientService smsClient) { _smsClient = smsClient; } public async Task SendSms() { await _smsClient.FetchAsync(); } } }