forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC2.cs
93 lines (78 loc) · 1.63 KB
/
C2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using System;
using System.Collections;
using System.Collections.Generic;
namespace NHibernate.DomainModel
{
/// <summary>
/// POJO for C2
/// </summary>
/// <remark>
/// This class is autogenerated
/// </remark>
[Serializable]
public class C2 : B
{
#region Fields
/// <summary>
/// Holder for address
/// </summary>
private String _address;
/// <summary>
/// Holder for c1
/// </summary>
private C1 _c1;
/// <summary>
/// Holder for c1s
/// </summary>
private IList<C1> _c1s = new List<C1>();
#endregion
#region Constructors
/// <summary>
/// Default constructor for class C2
/// </summary>
public C2()
{
}
/// <summary>
/// Constructor for class C2
/// </summary>
/// <param name="name">Initial name value</param>
/// <param name="count">Initial count value</param>
/// <param name="map">Initial map value</param>
/// <param name="address">Initial address value</param>
public C2(String name, Int32 count, IDictionary<string, string> map, String address)
: base(name, count, map)
{
this._address = address;
}
/// <summary>
/// Minimal constructor for class C2
/// </summary>
/// <param name="map">Initial map value</param>
public C2(IDictionary<string, string> map)
: base(map)
{
}
#endregion
#region Properties
/// <summary>
/// Get/set for address
/// </summary>
public virtual String Address
{
get { return _address; }
set { _address = value; }
}
public virtual C1 C1
{
get { return _c1; }
set { _c1 = value; }
}
public virtual IList<C1> C1s
{
get { return _c1s; }
set { _c1s = value; }
}
#endregion
}
}