📄 criteriabase.cs
字号:
using System;
namespace CSLA
{
/// <summary>
/// Base type from which Criteria classes can be
/// derived in a business class.
/// </summary>
[Serializable()]
public class CriteriaBase
{
/// <summary>
/// Type of the business object to be instantiated by
/// the server-side DataPortal.
/// </summary>
public Type ObjectType;
/// <summary>
/// Initializes CriteriaBase with the type of
/// business object to be created by the DataPortal.
/// </summary>
public CriteriaBase(Type type)
{
ObjectType = type;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -