You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System;
namespace ICSSoft.Frame.DataConnect.Action { /// <summary>
/// ���ݲɼ�ģ���ӿ�
/// ֻ�����ݲɼ��ڲ�ģ������
/// </summary>
public interface IAction { Messages Execute(ActionEventArgs actionEventArgs); }
/// <summary>
/// ��չ�����ݲɼ��ӿ�
/// ��Execute������һ��������ActionCheckStatus�����Լ�¼Action�IJ���
/// </summary>
public interface IActionWithStatus : IAction { Messages Execute(ActionEventArgs actionEventArgs, ActionCheckStatus actionCheckStatus); }
public interface IActionWithStatusNew : IAction { Messages Execute(ActionEventArgs actionEventArgs, ActionCheckStatus actionCheckStatus, object[] OPBOMinno); }
public interface IActionWithStatusFCT : IAction { Messages Execute(ActionEventArgs actionEventArgs, ActionCheckStatus actionCheckStatus, string workPoint); } // Added end
}
|