using System; using System.Collections.Generic; namespace Yavsc.Model.WorkFlow { public interface IWFOrder { /// /// Gets the unique Identifier for this order, in this application. /// /// The unique I. string UniqueID { get; } event EventHandler StatusChanged; } }