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

@@ -285,7 +285,7 @@ namespace VEPROMS.CSLA.Library
/// <returns>A Unique ID for the current UserInfo</returns>
protected override object GetIdValue()
{
return _UID;
return MyUserInfoUnique; // Absolutely Unique ID
}
#endregion
#region Factory Methods
@@ -293,7 +293,7 @@ namespace VEPROMS.CSLA.Library
private static int UserInfoUnique
{ get { return ++_UserInfoUnique; } }
private int _MyUserInfoUnique = UserInfoUnique;
public int MyUserInfoUnique
public int MyUserInfoUnique // Absolutely Unique ID - Info
{ get { return _MyUserInfoUnique; } }
protected UserInfo()
{/* require use of factory methods */