feat(ReceiverVM): add From method to be able to generate from EnvelopeReceiver

This commit is contained in:
2025-08-21 14:43:56 +02:00
parent 9045655262
commit 0f27600c5b
5 changed files with 104 additions and 90 deletions

View File

@@ -9,7 +9,7 @@
string encodeEnvelopeKey(Envelope envelope)
{
var receiver = envelope.Receivers.First();
return Helpers.EncodeEnvelopeReceiverId(envelope.Uuid, receiver.Signature);
return Helpers.EncodeEnvelopeReceiverId(envelope.Uuid, receiver.Receiver.Signature);
}
IEnumerable<IGrouping<EnvelopeStatus, Envelope>> groupEnvelopes(List<Envelope> envelopes)