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: * CustPrintReferenceRefAction.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 CustPrintReferenceRef { public partial class CustPrintReferenceRefAction : BaseAction { private static readonly ILogger logger = LoggerManager.GetLogger(typeof(CustPrintReferenceRefAction)); //强类型化基类Model属性.
public new CustPrintReferenceRefModel CurrentModel { get { return (CustPrintReferenceRefModel)base.CurrentModel; } set { base.CurrentModel = value ; } } public CustPrintReferenceRefAction(IPart part) : base(part) { } //Model参数的构造,用于测试用例.
public CustPrintReferenceRefAction(CustPrintReferenceRefModel model) : base(model) { } #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
} }
|