Changed GetIdValue to use UniqueID
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user