File tree 1 file changed +14
-20
lines changed
src/NHibernate.Test/NHSpecificTest/GH3530
1 file changed +14
-20
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
- using System . Text ;
5
- using System . Threading . Tasks ;
6
- using NHibernate . SqlCommand ;
7
2
8
- namespace NHibernate . Test . NHSpecificTest . GH3530
3
+ namespace NHibernate . Test . NHSpecificTest . GH3530 ;
4
+
5
+ public abstract class Entity
9
6
{
10
- public abstract class Entity
11
- {
12
- public virtual Guid Id { get ; set ; }
13
- }
7
+ public virtual Guid Id { get ; set ; }
8
+ }
14
9
15
- public abstract class DataEntity < T > : Entity where T : struct
16
- {
17
- public virtual T DataValue { get ; set ; }
18
- }
10
+ public abstract class DataEntity < T > : Entity where T : struct
11
+ {
12
+ public virtual T DataValue { get ; set ; }
13
+ }
19
14
20
- public class IntegerEntity : DataEntity < int > { }
21
- public class DateTimeEntity : DataEntity < DateTime > { }
15
+ public class IntegerEntity : DataEntity < int > { }
16
+ public class DateTimeEntity : DataEntity < DateTime > { }
22
17
23
- public class DoubleEntity : DataEntity < double > { }
24
- public class DecimalEntity : DataEntity < decimal > { }
25
- public class NHDateTimeEntity : DataEntity < DateTime > { }
26
- }
18
+ public class DoubleEntity : DataEntity < double > { }
19
+ public class DecimalEntity : DataEntity < decimal > { }
20
+ public class NHDateTimeEntity : DataEntity < DateTime > { }
You can’t perform that action at this time.
0 commit comments