Index: Contact.cs
===================================================================
--- Contact.cs (revision 192)
+++ Contact.cs (working copy)
@@ -21,7 +21,7 @@
///
/// Property Id (int)
///
- public int Id
+ public virtual int Id
{
get { return this._id; }
set { this._id = value; }
@@ -30,7 +30,7 @@
///
/// Property Title (string)
///
- public string Title
+ public virtual string Title
{
get { return this._title; }
set { this._title = value; }
@@ -39,7 +39,7 @@
///
/// Property Link (string)
///
- public string Name
+ public virtual string Name
{
get { return this._name; }
set { this._name = value; }
@@ -48,7 +48,7 @@
///
/// Property Description (string)
///
- public string Email
+ public virtual string Email
{
get { return this._email; }
set { this._email = value; }
@@ -57,7 +57,7 @@
///
///
///
- public DateTime UpdateTimestamp
+ public virtual DateTime UpdateTimestamp
{
get { return this._updateTimestamp; }
set { this._updateTimestamp = value; }
Index: Contact.hbm.xml
===================================================================
--- Contact.hbm.xml (revision 192)
+++ Contact.hbm.xml (working copy)
@@ -1,5 +1,5 @@
-
+