123456789101112131415161718192021222324252627282930 |
- using InABox.Core;
- using System;
- namespace Comal.Classes
- {
- public interface IBaseDimensionUnit
- {
- String Code { get; set; }
- String Description { get; set; }
- bool HasQuantity { get; set; }
- bool HasLength { get; set; }
- bool HasWidth { get; set; }
- bool HasHeight { get; set; }
- bool HasWeight { get; set; }
- String Formula { get; set; }
- String Format { get; set; }
- String Conversion { get; set; }
- bool HasDimensions();
-
- }
-
- public interface IDimensionUnit : IBaseDimensionUnit, IEntity
- {
- }
- public interface IDimensionUnitLink : IEntityLink, IBaseDimensionUnit
- {
-
- }
- }
|