* Added Recipient description to Products view
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user