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. long UniqueID { get; } /// /// Gets the actual status for this order. /// /// The status. string GetStatus(); } }