feat(GtxMessagingService): Umbenennung von SendSms in SendSmsAsync

This commit is contained in:
Developer 02 2024-11-25 13:01:43 +01:00
parent 132acd35cc
commit 4a62ab0c56

View File

@ -16,7 +16,7 @@ namespace EnvelopeGenerator.Application.Services
_smsParams = smsParamsOptions.Value;
}
public async Task SendSms(string recipient, string message)
public async Task SendSmsAsync(string recipient, string message)
{
await _smsClient.FetchAsync(queryParams: new Dictionary<string, object?>() {
{ _smsParams.RecipientQueryParamName, recipient },