Added method to retrieve ROFst based upon RODBID

Added property to get DocVersion for a ProcedureInfo
Added method to check to see if a particular RO database is a setpoint database
This commit is contained in:
Rich
2010-10-15 21:13:52 +00:00
parent 9690f44dbb
commit efdd461edf
3 changed files with 18 additions and 1 deletions

View File

@@ -428,6 +428,15 @@ namespace VEPROMS.CSLA.Library
}
#endregion
public ROFstInfo GetROFst(int rodbid)
{
foreach (AssociationInfo dva in DocVersionAssociations)
{
if (dva.MyROFst.RODbID == rodbid)
return dva.MyROFst;
}
return null;
}
}
public enum VersionTypeEnum : int
{