- 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:
17 lines
382 B
C#
17 lines
382 B
C#
using System;
|
|
|
|
namespace yavscModel.WorkFlow
|
|
{
|
|
public class OrderStatusChangedEventArgs: EventArgs
|
|
{
|
|
public OrderStatusChangedEventArgs (int oldstatus, int newstatus, string reason)
|
|
{
|
|
oldstat = oldstatus;
|
|
newstat = newstatus;
|
|
}
|
|
private int oldstat, newstat;
|
|
public int OldStatus { get { return oldstat; } }
|
|
public int NewStatus { get { return newstat; } }
|
|
}
|
|
}
|
|
|