forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLower.cs
65 lines (56 loc) · 991 Bytes
/
Lower.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using System.Collections.Generic;
namespace NHibernate.DomainModel
{
public class Lower : Top
{
private int _intprop;
private string _foo;
private ISet<Top> _set;
private IList<Top> _bag;
private Lower _other;
private Top _another;
private Lower _yetAnother;
private Po _myPo;
public int Intprop
{
get { return _intprop; }
set { _intprop = value; }
}
public string Foo
{
get { return _foo; }
set { _foo = value; }
}
public ISet<Top> Set
{
get { return _set; }
set { _set = value; }
}
public IList<Top> Bag
{
get { return _bag; }
set { _bag = value; }
}
public new Lower Other
{
get { return _other; }
set { _other = value; }
}
public Top Another
{
get { return _another; }
set { _another = value; }
}
public Lower YetAnother
{
get { return _yetAnother; }
set { _yetAnother = value; }
}
public Po MyPo
{
get { return _myPo; }
set { _myPo = value; }
}
}
}