/**************************************************************
* 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.
///
/// Help: 数据加载(发生在Form的初始化加载时)
///
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);
}
///
/// Help: 数据收集(发生在Form的CallBack或者是PostBack时)
///
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
}
}