Compare commits

...

2 Commits

Author SHA1 Message Date
Adam 684a805d53 Merge branch 'main' of https://git.aycode.com/Adam/FruitBankHybridApp 2025-11-06 21:12:29 +01:00
Adam 9b543db5eb nameondocument 2025-11-06 21:10:31 +01:00
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@ public class ShippingItem : MgEntityBase, IShippingItem
public int? ProductId { get; set; }
public string Name { get; set; }
public string NameOnDocument { get; set; }
public string HungarianName { get; set; }
/// <summary>
/// get => ProductDto?.Name ?? Name

View File

@ -13,6 +13,8 @@ public interface IShippingItem : IEntityInt, ITimeStampInfo, IMeasurable, IMeasu
int? ProductId { get; set; }
string Name { get; set; }
string NameOnDocument { get; set; }
string HungarianName { get; set; }
int PalletsOnDocument { get; set; }