forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBar.cs
69 lines (62 loc) · 1.21 KB
/
Bar.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
66
67
68
69
using System;
namespace NHibernate.DomainModel
{
[Serializable]
public class Bar : Abstract, BarProxy, INamed
{
private int _x;
private string _barString;
private FooComponent _barComponent = new FooComponent("bar", 69, null, null);
private Baz _baz;
private string _name = "bar";
private object _object;
/// <summary>
/// Gets or sets the X
/// </summary>
public override int X
{
get { return _x; }
set { _x = value; }
}
/// <summary>
/// Gets or sets the _barString
/// </summary>
public string BarString
{
get { return _barString; }
set { _barString = value; }
}
/// <summary>
/// Gets or sets the _barComponent
/// </summary>
public FooComponent BarComponent
{
get { return _barComponent; }
set { _barComponent = value; }
}
/// <summary>
/// Gets or sets the _baz
/// </summary>
public Baz Baz
{
get { return _baz; }
set { _baz = value; }
}
/// <summary>
/// Gets or sets the _name
/// </summary>
public string Name
{
get { return _name; }
set { _name = value; }
}
/// <summary>
/// Gets or sets the _object
/// </summary>
public object Object
{
get { return _object; }
set { _object = value; }
}
}
}