public static string GetClassName(EntityRef entityRef)
 {
     return(entityRef.ClassName);
 }
 public static object GetOID(EntityRef entityRef)
 {
     return(entityRef.OID);
 }
 public static Type GetClass(EntityRef entityRef)
 {
     return(Type.GetType(entityRef.ClassName, true));
 }
 public static int GetVersion(EntityRef entityRef)
 {
     return(entityRef.Version);
 }