forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooProxy.cs
63 lines (38 loc) · 939 Bytes
/
FooProxy.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
using System;
using NHibernate.DomainModel.NHSpecific;
namespace NHibernate.DomainModel
{
public interface FooProxy
{
FooComponent NullComponent { get; set; }
FooComponent Component { get; set; }
string[] Custom { get; set; }
FooStatus Status { get; set; }
bool YesNo { get; set; }
bool EqualsFoo(Foo other);
void Disconnect();
byte Byte { get; set; }
NullableInt32 Null { get; set; }
int Int { get; set; }
bool Bool { get; set; }
float Zero { get; set; }
byte[] Bytes { get; set; }
bool Boolean { get; set; }
// double Double
// {
// get;
// set;
// }
float Float { get; set; }
short Short { get; set; }
char Char { get; set; }
long Long { get; set; }
int Integer { get; set; }
DateTime Timestamp { get; set; }
DateTime Date { get; set; }
string String { get; set; }
FooProxy TheFoo { get; set; }
Fee Dependent { get; set; }
String Key { get; set; }
}
}