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.
|
|
/************************************************************** * Description: * CustPOSendMailUIAction.cs * Product: U9 * Co. : UFIDA Group * Author : Auto Generated * version: 2.0 **************************************************************/ using System; using System.Collections; using System.Collections.Generic; using System.Text; using UFSoft.UBF.Util.Log; using UFSoft.UBF.UI.MD.Runtime; using UFSoft.UBF.UI.ActionProcess; using UFSoft.UBF.UI.IView; using System.Data;
namespace UFIDA.U9.Cust.WC.CustPOSendMailUI { public partial class CustPOSendMailUIAction : BaseAction { private static readonly ILogger logger = LoggerManager.GetLogger(typeof(CustPOSendMailUIAction)); //强类型化基类Model属性.
public new CustPOSendMailUIModel CurrentModel { get { return (CustPOSendMailUIModel)base.CurrentModel; } set { base.CurrentModel = value ; } } public CustPOSendMailUIAction(IPart part) : base(part) { } //Model参数的构造,用于测试用例.
public CustPOSendMailUIAction(CustPOSendMailUIModel model) : base(model) { } /// <summary>
/// Help:
/// </summary>
public void OnSend(object sender, UIActionEventArgs e) { //调用基类委托..
this.InvokeAction(sender,e,this.OnSend_Extend); } private void OnSend_DefaultImpl(object sender, UIActionEventArgs e) {
} /// <summary>
/// Help:
/// </summary>
public void OnClose(object sender, UIActionEventArgs e) { //调用基类委托..
this.InvokeAction(sender,e,this.OnClose_Extend); } private void OnClose_DefaultImpl(object sender, UIActionEventArgs e) {
} #region Action的内置两个Action.
/// <summary>
/// Help: 数据加载(发生在Form的初始化加载时)
/// </summary>
public void OnLoadData(object sender, UIActionEventArgs e) { //UBF扩展处...
this.OnLoadData_Extend(sender,e) ; } private void OnLoadData_DefaultImpl(object sender, UIActionEventArgs e) {
UFIDA.U9.UI.Commands.CommandFactory.DoCommand("DataLoad",this,sender,e); } /// <summary>
/// Help: 数据收集(发生在Form的CallBack或者是PostBack时)
/// </summary>
public void OnDataCollect(object sender, UIActionEventArgs e) { //UBF扩展处...
this.OnDataCollect_Extend(sender,e) ; } private void OnDataCollect_DefaultImpl(object sender, UIActionEventArgs e) { UFIDA.U9.UI.Commands.CommandFactory.DoCommand("DataCollect",this,sender,e); } #endregion
} }
|