123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using InABox.Core;
- using System;
- using AutoProperties;
- namespace Comal.Classes
- {
- // public abstract class DimensionUnitLink<T> : EntityLink<T>, IDimensionUnit where T : DimensionUnit, new()
- // {
- // [RequiredColumn]
- // [InterceptIgnore]
- // public override Guid ID { get; set; }
- //
- // [EditorSequence(1)]
- // [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- // [InterceptIgnore]
- // public string Code { get; set; }
- //
- // [EditorSequence(2)]
- // [TextBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
- // [InterceptIgnore]
- // public string Description { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public bool HasQuantity { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public bool HasLength { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public bool HasWidth { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public bool HasHeight { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public bool HasWeight { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public string Formula { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public string Format { get; set; }
- //
- // [NullEditor]
- // [RequiredColumn]
- // [InterceptIgnore]
- // public virtual string Conversion { get; set; }
- //
- // public bool HasDimensions() => HasHeight || HasWidth || HasLength || HasWeight || HasQuantity;
- //
- //}
- }
|