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

@@ -255,7 +255,7 @@ namespace VEPROMS.CSLA.Library
/// <returns>A Unique ID for the current ROFstInfo</returns>
protected override object GetIdValue()
{
return _ROFstID;
return MyROFstInfoUnique; // Absolutely Unique ID
}
#endregion
#region Factory Methods
@@ -263,7 +263,7 @@ namespace VEPROMS.CSLA.Library
private static int ROFstInfoUnique
{ get { return ++_ROFstInfoUnique; } }
private int _MyROFstInfoUnique = ROFstInfoUnique;
public int MyROFstInfoUnique
public int MyROFstInfoUnique // Absolutely Unique ID - Info
{ get { return _MyROFstInfoUnique; } }
protected ROFstInfo()
{/* require use of factory methods */