namespace Elwig.Helpers.Weighing { /// /// Interface for controlling a weighing scale which automatically sends weighing updates /// public interface IEventScale : IScale { public event EventHandler WeighingEvent; delegate void EventHandler(object sender, WeighingEventArgs args); } }