nameondocument
This commit is contained in:
parent
955d7ec963
commit
9b543db5eb
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue