refactor(EnvelopeStatus): umbenennen in EnvelopeReceiver

This commit is contained in:
Developer 02
2025-05-21 18:43:48 +02:00
parent 806b990556
commit 79204d4f6d
6 changed files with 18 additions and 18 deletions

View File

@@ -48,7 +48,7 @@ namespace EnvelopeGenerator.Web.Services
throw new ArgumentNullException("ReceiverSignature");
}
public async Task<EnvelopeResponse> LoadEnvelope(string pEnvelopeKey)
public async Task<EnvelopeReceiver> LoadEnvelope(string pEnvelopeKey)
{
_logger.LogInformation("Loading Envelope by Key [{0}]", pEnvelopeKey);
@@ -152,7 +152,7 @@ namespace EnvelopeGenerator.Web.Services
public async Task<EnvelopeDocument> GetDocument(int documentId, string envelopeKey)
{
EnvelopeResponse response = await LoadEnvelope(envelopeKey);
EnvelopeReceiver response = await LoadEnvelope(envelopeKey);
_logger.LogInformation("Loading document for Id [{0}]", documentId);