From 4a62ab0c5675a122b002a934d4a33911fa9037da Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 25 Nov 2024 13:01:43 +0100 Subject: [PATCH] feat(GtxMessagingService): Umbenennung von SendSms in SendSmsAsync --- EnvelopeGenerator.Application/Services/GTXMessagingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Services/GTXMessagingService.cs b/EnvelopeGenerator.Application/Services/GTXMessagingService.cs index 81a03545..c8e5090f 100644 --- a/EnvelopeGenerator.Application/Services/GTXMessagingService.cs +++ b/EnvelopeGenerator.Application/Services/GTXMessagingService.cs @@ -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() { { _smsParams.RecipientQueryParamName, recipient },