Skip to content

Commit be15faf

Browse files
author
Peter Smulovics
committed
Still adding testentities.
SVN: trunk@385
1 parent 50119cd commit be15faf

File tree

4 files changed

+91
-0
lines changed

4 files changed

+91
-0
lines changed
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
}

src/NHibernate.DomainModel/NHibernate.DomainModel-1.1.csproj

+15
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,16 @@
101101
RelPath = "ABCProxy.hbm.xml"
102102
BuildAction = "EmbeddedResource"
103103
/>
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+
/>
104114
<File
105115
RelPath = "AssemblyInfo.cs"
106116
SubType = "Code"
@@ -374,6 +384,11 @@
374384
RelPath = "Team.hbm.xml"
375385
BuildAction = "EmbeddedResource"
376386
/>
387+
<File
388+
RelPath = "Trivial.cs"
389+
SubType = "Code"
390+
BuildAction = "Compile"
391+
/>
377392
<File
378393
RelPath = "UnsavedType.cs"
379394
SubType = "Code"

src/NHibernate.DomainModel/Trivial.cs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
using System;
2+
3+
namespace NHibernate.DomainModel
4+
{
5+
public class Trivial : Foo
6+
{
7+
8+
}
9+
}

0 commit comments

Comments
 (0)