forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerson.cs
46 lines (39 loc) · 761 Bytes
/
Person.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
namespace NHibernate.Test.Unconstrained
{
public class Person
{
private string _name;
private string _employeeId;
private Employee _employee;
// Just a property that can be changed to force an update of the object.
private int _unrelated;
public Person()
{
}
public Person(string name) : this()
{
_name = name;
}
public virtual string Name
{
get { return _name; }
set { _name = value; }
}
public virtual Employee Employee
{
get { return _employee; }
set { _employee = value; }
}
public virtual string EmployeeId
{
get { return _employeeId; }
set { _employeeId = value; }
}
public virtual int Unrelated
{
get { return _unrelated; }
set { _unrelated = value; }
}
}
}