public static bool IsEqual(IObject this_, IObject that)
 {
     if (this_ == that)
     {
         return(true);
     }
     return(this_.AreAttributesEqual(that));
 }