Skip to content

Commit 13fe27d

Browse files
committed
Fix NH-2800
SVN: trunk@5998
1 parent 0a89f29 commit 13fe27d

16 files changed

+20
-20
lines changed

src/NHibernate/Type/BooleanType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class BooleanType : PrimitiveType, IDiscriminatorType
1515
/// Initialize a new instance of the BooleanType
1616
/// </summary>
1717
/// <remarks>This is used when the Property is mapped to a native boolean type.</remarks>
18-
internal BooleanType() : base(SqlTypeFactory.Boolean)
18+
public BooleanType() : base(SqlTypeFactory.Boolean)
1919
{
2020
}
2121

@@ -28,7 +28,7 @@ internal BooleanType() : base(SqlTypeFactory.Boolean)
2828
/// This is used when the Property is mapped to a string column
2929
/// that stores true or false as a string.
3030
/// </remarks>
31-
internal BooleanType(AnsiStringFixedLengthSqlType sqlType) : base(sqlType)
31+
public BooleanType(AnsiStringFixedLengthSqlType sqlType) : base(sqlType)
3232
{
3333
}
3434

src/NHibernate/Type/ByteType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ByteType : PrimitiveType, IDiscriminatorType, IVersionType
1515
{
1616
private static readonly byte ZERO = 0;
1717

18-
internal ByteType() : base(SqlTypeFactory.Byte)
18+
public ByteType() : base(SqlTypeFactory.Byte)
1919
{
2020
}
2121

src/NHibernate/Type/DecimalType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ namespace NHibernate.Type
1111
[Serializable]
1212
public class DecimalType : PrimitiveType, IIdentifierType
1313
{
14-
internal DecimalType()
14+
public DecimalType()
1515
: this(SqlTypeFactory.Decimal)
1616
{
1717
}
1818

19-
internal DecimalType(SqlType sqlType) : base(sqlType)
19+
public DecimalType(SqlType sqlType) : base(sqlType)
2020
{
2121
}
2222

src/NHibernate/Type/DoubleType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ namespace NHibernate.Type
1212
public class DoubleType : PrimitiveType
1313
{
1414
/// <summary></summary>
15-
internal DoubleType() : base(SqlTypeFactory.Double)
15+
public DoubleType() : base(SqlTypeFactory.Double)
1616
{
1717
}
1818

19-
internal DoubleType(SqlType sqlType) : base(sqlType) {}
19+
public DoubleType(SqlType sqlType) : base(sqlType) {}
2020

2121
/// <summary>
2222
///

src/NHibernate/Type/GuidType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace NHibernate.Type
1212
public class GuidType : PrimitiveType, IDiscriminatorType
1313
{
1414
/// <summary></summary>
15-
internal GuidType() : base(SqlTypeFactory.Guid)
15+
public GuidType() : base(SqlTypeFactory.Guid)
1616
{
1717
}
1818

src/NHibernate/Type/Int16Type.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NHibernate.Type
1515
public class Int16Type : PrimitiveType, IDiscriminatorType, IVersionType
1616
{
1717
/// <summary></summary>
18-
internal Int16Type() : base(SqlTypeFactory.Int16)
18+
public Int16Type() : base(SqlTypeFactory.Int16)
1919
{
2020
}
2121

src/NHibernate/Type/Int32Type.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NHibernate.Type
1515
public class Int32Type : PrimitiveType, IDiscriminatorType, IVersionType
1616
{
1717
/// <summary></summary>
18-
internal Int32Type() : base(SqlTypeFactory.Int32)
18+
public Int32Type() : base(SqlTypeFactory.Int32)
1919
{
2020
}
2121

src/NHibernate/Type/Int64Type.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NHibernate.Type
1515
public class Int64Type : PrimitiveType, IDiscriminatorType, IVersionType
1616
{
1717
/// <summary></summary>
18-
internal Int64Type() : base(SqlTypeFactory.Int64)
18+
public Int64Type() : base(SqlTypeFactory.Int64)
1919
{
2020
}
2121

src/NHibernate/Type/SByteType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NHibernate.Type
1515
public class SByteType : PrimitiveType, IDiscriminatorType
1616
{
1717
/// <summary></summary>
18-
internal SByteType() : base(SqlTypeFactory.SByte)
18+
public SByteType() : base(SqlTypeFactory.SByte)
1919
{
2020
}
2121

src/NHibernate/Type/SingleType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ namespace NHibernate.Type
1616
public class SingleType : PrimitiveType
1717
{
1818
/// <summary></summary>
19-
internal SingleType() : base(SqlTypeFactory.Single)
19+
public SingleType() : base(SqlTypeFactory.Single)
2020
{
2121
}
2222

23-
internal SingleType(SqlType sqlType) : base(sqlType) {}
23+
public SingleType(SqlType sqlType) : base(sqlType) {}
2424

2525
/// <summary></summary>
2626
public override string Name

src/NHibernate/Type/TicksType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace NHibernate.Type
1919
public class TicksType : PrimitiveType, IVersionType, ILiteralType
2020
{
2121
/// <summary></summary>
22-
internal TicksType()
22+
public TicksType()
2323
: base(SqlTypeFactory.Int64) {}
2424

2525
/// <summary>

src/NHibernate/Type/TimeAsTimeSpanType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class TimeAsTimeSpanType : PrimitiveType, IVersionType
1717
{
1818
private static readonly DateTime BaseDateValue = new DateTime(1753, 01, 01);
1919

20-
internal TimeAsTimeSpanType()
20+
public TimeAsTimeSpanType()
2121
: base(SqlTypeFactory.Time)
2222
{
2323
}

src/NHibernate/Type/TimeSpanType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace NHibernate.Type
1414
public class TimeSpanType : PrimitiveType, IVersionType, ILiteralType
1515
{
1616
/// <summary></summary>
17-
internal TimeSpanType()
17+
public TimeSpanType()
1818
: base(SqlTypeFactory.Int64)
1919
{
2020
}

src/NHibernate/Type/TimeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class TimeType : PrimitiveType, IIdentifierType, ILiteralType
2626
{
2727
private static readonly DateTime BaseDateValue = new DateTime(1753, 01, 01);
2828

29-
internal TimeType() : base(SqlTypeFactory.Time)
29+
public TimeType() : base(SqlTypeFactory.Time)
3030
{
3131
}
3232

src/NHibernate/Type/UInt16Type.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NHibernate.Type
1515
public class UInt16Type : PrimitiveType, IDiscriminatorType, IVersionType
1616
{
1717
/// <summary></summary>
18-
internal UInt16Type() : base(SqlTypeFactory.UInt16)
18+
public UInt16Type() : base(SqlTypeFactory.UInt16)
1919
{
2020
}
2121

src/NHibernate/Type/UInt32Type.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NHibernate.Type
1515
public class UInt32Type : PrimitiveType, IDiscriminatorType, IVersionType
1616
{
1717
/// <summary></summary>
18-
internal UInt32Type() : base(SqlTypeFactory.UInt32)
18+
public UInt32Type() : base(SqlTypeFactory.UInt32)
1919
{
2020
}
2121

0 commit comments

Comments
 (0)