
- Mvc-like action binding in the WF web api ... ? * Yavsc.sln: * Web.csproj: * MvcActionValueBinder.cs: * yavscModel.csproj: * WFOrder.cs: * IWFOrder.cs: * BasketImpact.cs: * ProjectInfo.cs: * IWFModule.cs: * IWFCommand.cs: * WorkFlowController.cs: * NewProjectModel.cs: * IContentProvider.cs: * ITCPNpgsqlProvider.cs: * WorkFlowProvider.csproj: * ITContentProvider.csproj: * AssemblyInfo.cs: * OrderStatusChangedEventArgs.cs: * NpgsqlContentProvider.cs:
19 lines
352 B
C#
19 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace yavscModel.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;
|
|
}
|
|
}
|
|
|