yavsc/yavscModel/WorkFlow/IWFOrder.cs

19 lines
353 B
C#

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