using System; namespace Elwig.Helpers.Weighing { /// /// Interface for controlling a industrial scale (industrial terminal, "IT") /// public interface IScale : IDisposable { /// /// Manufacturer of the scale /// string Manufacturer { get; } /// /// Model of the scale /// string Model { get; } /// /// Unique identificator of the scale /// string ScaleId { get; } /// /// Internal identifying number of the scale in its system /// int InternalScaleNr { get; } /// /// Indicates if the scale is currently processing a request or not /// bool IsReady { get; } /// /// Indicates if the the clearance for filling the scale container has been granted /// bool HasFillingClearance { get; } /// /// The maximal configured weight limit of the scale in kg /// int? WeightLimit { get; } /// /// Where to log the requests and responses from the scale to /// string? LogPath { get; } } }