* Fixed issue with wrong Recipient mapping

This commit is contained in:
2025-05-07 20:15:20 +02:00
parent 04e18374da
commit 9f38998135
2 changed files with 18 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ public class ProductDto : DtoBase
public int RecipientID { get; set; }
public string RecipientIdx { get; set; }
public string FaIdx { get; set; }
public string RecipientName => Recipient.RecipientDesc;
public string RecipientName { get; set; }
public RecipientDto Recipient { get; set; }
}