wantedprofession.cs
来自「NHibernate NET开发者所需的」· CS 代码 · 共 34 行
CS
34 行
namespace NHibernate.Test.NHSpecificTest.LoadingNullEntityInSet
{
public class WantedProfession
{
private int id;
private PrimaryProfession primaryProfession;
private SecondaryProfession secondaryProfession;
private Employee employee;
public PrimaryProfession PrimaryProfession
{
get { return primaryProfession; }
set { primaryProfession = value; }
}
public SecondaryProfession SecondaryProfession
{
get { return secondaryProfession; }
set { secondaryProfession = value; }
}
public Employee Employee
{
get { return employee; }
set { employee = value; }
}
public int Id
{
get { return id; }
set { id = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?