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

@@ -323,5 +323,10 @@ namespace VEPROMS.CSLA.Library
}
#endregion
#endregion
public bool IsSetpointDB(int id)
{
ROFSTLookup.rodbi[] dbs = ROFSTLookup.GetRODatabaseList();
return dbs[id].dbiAP.StartsWith("SP");
}
}
}