Changed GetIdValue to use UniqueID

This commit is contained in:
Rich
2009-10-21 20:49:28 +00:00
parent d2e964dde1
commit 7bc7129faf
84 changed files with 318 additions and 138 deletions

View File

@@ -136,7 +136,7 @@ namespace VEPROMS.CSLA.Library
/// <returns>A Unique ID for the current ZContentInfo</returns>
protected override object GetIdValue()
{
return _ContentID;
return MyZContentInfoUnique; // Absolutely Unique ID
}
#endregion
#region Factory Methods
@@ -144,7 +144,7 @@ namespace VEPROMS.CSLA.Library
private static int ZContentInfoUnique
{ get { return ++_ZContentInfoUnique; } }
private int _MyZContentInfoUnique = ZContentInfoUnique;
public int MyZContentInfoUnique
public int MyZContentInfoUnique // Absolutely Unique ID - Info
{ get { return _MyZContentInfoUnique; } }
protected ZContentInfo()
{/* require use of factory methods */