09-08-2023

This commit is contained in:
Jonathan Jenne
2023-08-09 11:57:43 +02:00
parent 73149e2101
commit 7c31ccee1c
5 changed files with 92 additions and 32 deletions

View File

@@ -56,8 +56,9 @@ Public Class FieldEditorController
End If
End Function
Public Function SaveElements() As Boolean
Public Function SaveElements(pReceiverId As Integer) As Boolean
Return Elements.
Where(Function(e) e.ReceiverId = pReceiverId).
Select(AddressOf SaveElement).
All(Function(pResult) pResult = True)
End Function