refactor(MessagingService): umbenannt in SmsSender

This commit is contained in:
Developer 02
2025-01-31 10:37:59 +01:00
parent e54d9d2da8
commit 22347a0202
6 changed files with 14 additions and 12 deletions

View File

@@ -7,9 +7,9 @@ namespace EnvelopeGenerator.Web.Controllers.Test
[ApiController]
public class TestMessagingController : ControllerBase
{
private readonly IMessagingService _service;
private readonly ISmsSender _service;
public TestMessagingController(IMessagingService service)
public TestMessagingController(ISmsSender service)
{
_service = service;
}