Compare commits
2 Commits
51a9b3ae4b
...
684a805d53
| Author | SHA1 | Date |
|---|---|---|
|
|
684a805d53 | |
|
|
9b543db5eb |
|
|
@ -23,6 +23,8 @@ public class ShippingItem : MgEntityBase, IShippingItem
|
||||||
public int? ProductId { get; set; }
|
public int? ProductId { get; set; }
|
||||||
|
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
|
public string NameOnDocument { get; set; }
|
||||||
|
public string HungarianName { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// get => ProductDto?.Name ?? Name
|
/// get => ProductDto?.Name ?? Name
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ public interface IShippingItem : IEntityInt, ITimeStampInfo, IMeasurable, IMeasu
|
||||||
int? ProductId { get; set; }
|
int? ProductId { get; set; }
|
||||||
|
|
||||||
string Name { get; set; }
|
string Name { get; set; }
|
||||||
|
string NameOnDocument { get; set; }
|
||||||
|
string HungarianName { get; set; }
|
||||||
|
|
||||||
int PalletsOnDocument { get; set; }
|
int PalletsOnDocument { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue