Die grundlegende ReadByUsernameAsync-Methode wurde sowohl dem Repository als auch dem Service, einschließlich Envelope und Receiver, hinzugefügt.

This commit is contained in:
Developer 02
2024-06-17 11:19:35 +02:00
parent fc91a451f6
commit 79bb454fd1
4 changed files with 29 additions and 11 deletions

View File

@@ -18,5 +18,7 @@ namespace EnvelopeGenerator.Infrastructure.Contracts
Task<EnvelopeReceiver?> ReadByIdAsync(int envelopeId, int receiverId);
Task<string?> ReadAccessCodeByIdAsync(int envelopeId, int receiverId);
Task<IEnumerable<EnvelopeReceiver>> ReadByUsernameAsync(string username);
}
}