File tree 4 files changed +91
-0
lines changed
src/NHibernate.DomainModel
4 files changed +91
-0
lines changed Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections ;
3
+
4
+ namespace NHibernate . DomainModel
5
+ {
6
+ public abstract class Abstract : Foo , AbstractProxy
7
+ {
8
+
9
+ /// <summary>
10
+ /// Holds the _time
11
+ /// </summary>
12
+ private DateTime _time ;
13
+
14
+ /// <summary>
15
+ /// Gets or sets the _time
16
+ /// </summary>
17
+ public DateTime time
18
+ {
19
+ get
20
+ {
21
+ return _time ;
22
+ }
23
+ set
24
+ {
25
+ _time = value ;
26
+ }
27
+ }
28
+ /// <summary>
29
+ /// Holds the _abstract
30
+ /// </summary>
31
+ private IList _abstracts ;
32
+
33
+ /// <summary>
34
+ /// Gets or sets the _abstract
35
+ /// </summary>
36
+ public IList abstracts
37
+ {
38
+ get
39
+ {
40
+ return _abstracts ;
41
+ }
42
+ set
43
+ {
44
+ _abstracts = value ;
45
+ }
46
+ }
47
+ }
48
+ }
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections ;
3
+
4
+ namespace NHibernate . DomainModel
5
+ {
6
+ public interface AbstractProxy : FooProxy
7
+ {
8
+ IList abstracts
9
+ {
10
+ get ;
11
+ set ;
12
+ }
13
+ DateTime time
14
+ {
15
+ get ;
16
+ set ;
17
+ }
18
+ }
19
+ }
Original file line number Diff line number Diff line change 101
101
RelPath = " ABCProxy.hbm.xml"
102
102
BuildAction = " EmbeddedResource"
103
103
/>
104
+ <File
105
+ RelPath = " Abstract.cs"
106
+ SubType = " Code"
107
+ BuildAction = " Compile"
108
+ />
109
+ <File
110
+ RelPath = " AbstractProxy.cs"
111
+ SubType = " Code"
112
+ BuildAction = " Compile"
113
+ />
104
114
<File
105
115
RelPath = " AssemblyInfo.cs"
106
116
SubType = " Code"
374
384
RelPath = " Team.hbm.xml"
375
385
BuildAction = " EmbeddedResource"
376
386
/>
387
+ <File
388
+ RelPath = " Trivial.cs"
389
+ SubType = " Code"
390
+ BuildAction = " Compile"
391
+ />
377
392
<File
378
393
RelPath = " UnsavedType.cs"
379
394
SubType = " Code"
Original file line number Diff line number Diff line change
1
+ using System ;
2
+
3
+ namespace NHibernate . DomainModel
4
+ {
5
+ public class Trivial : Foo
6
+ {
7
+
8
+ }
9
+ }
You can’t perform that action at this time.
0 commit comments