using System;
namespace Zhaizj.Framework {
///
/// 不带参数的委托,主要用于mvc中的链接。
///
public delegate void aAction();
///
/// 带整型参数的委托,主要用于mvc中的链接。
///
///
public delegate void aActionWithId( int id );
///
/// 带字符串参数的委托,主要用于mvc中的链接,本委托不常用。
///
///
public delegate void aActionWithQuery( String param );
}