forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathB.cs
84 lines (71 loc) · 1.44 KB
/
B.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
using System;
using System.Collections.Generic;
namespace NHibernate.DomainModel
{
/// <summary>
/// POJO for B
/// </summary>
/// <remark>
/// This class is autogenerated
/// </remark>
[Serializable]
public class B : A
{
#region Fields
/// <summary>
/// Holder for count
/// </summary>
private Int32 _count;
/// <summary>
/// Holder for map
/// </summary>
private IDictionary<string, string> _map;
#endregion
#region Constructors
/// <summary>
/// Default constructor for class B
/// </summary>
public B()
{
}
/// <summary>
/// Constructor for class B
/// </summary>
/// <param name="name">Initial name value</param>
/// <param name="count">Initial count value</param>
/// <param name="map">Initial map value</param>
public B(String name, Int32 count, IDictionary<string, string> map)
: base(name)
{
this._count = count;
this._map = map;
}
/// <summary>
/// Minimal constructor for class B
/// </summary>
/// <param name="map">Initial map value</param>
public B(IDictionary<string, string> map)
{
this._map = map;
}
#endregion
#region Properties
/// <summary>
/// Get/set for count
/// </summary>
public virtual Int32 Count
{
get { return _count; }
set { _count = value; }
}
/// <summary>
/// Get/set for map
/// </summary>
public virtual IDictionary<string, string> Map
{
get { return _map; }
set { _map = value; }
}
#endregion
}
}