| 123456789101112131415161718 | using InABox.Core;using System;namespace Comal.Classes{    public interface IDimensionUnit : IEntity    {        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; }    }}
 |