1234567891011121314151617181920 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class ProductDimensionUnitLink : DimensionUnitLink<ProductDimensionUnit>
- {
- [Obsolete("You should always provide a Linked Entity", true)]
- public ProductDimensionUnitLink()
- {
- }
- public ProductDimensionUnitLink(Func<BaseObject>? entity) : base(entity)
- {
- }
- [LookupEditor(typeof(ProductDimensionUnit), nameof(Code), nameof(Description), nameof(HasQuantity), nameof(HasLength), nameof(HasWidth), nameof(HasHeight), nameof(HasWeight), nameof(Formula), nameof(Format))]
- public override Guid ID { get; set; }
- }
- }
|