* Added Recipient description to Products view

This commit is contained in:
2025-05-07 20:03:29 +02:00
parent 7660db1c0b
commit 04e18374da
3 changed files with 6 additions and 1 deletions

View File

@@ -6,4 +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 RecipientDto Recipient { get; set; }
}

View File

@@ -6,4 +6,6 @@ public class Product : EntityBase
public int RecipientID { get; set; }
public string RecipientIdx { get; set; }
public string FaIdx { get; set; }
public Recipient Recipient { get; set; }
}