| 12345678910111213141516171819202122 | using InABox.Core;using System;namespace Comal.Classes{    public interface IDimensions    {        IDimensionUnit Unit { get; }        IDimensionUnit GetUnit();        double Quantity { get; set; }        double Length { get; set; }        double Width { get; set; }        double Height { get; set; }        double Weight { get; set; }        double Value { get; set; }        String UnitSize { get; set; }        void Set(IDimensionUnit unit, double quantity, double length, double width, double height, double weight);        void CopyFrom(IDimensions source, bool observing = false);    }}
 |