/// <summary>
 /// Get reference relations that are related to specified object.
 /// </summary>
 /// <param name="clientInformation">Information about the client that makes this web service call.</param>
 /// <param name="relatedObjectGuid">GUID for the related object.</param>
 /// <returns>Reference relations that are related to specified object.</returns>
 public List <WebReferenceRelation> GetReferenceRelationsByRelatedObjectGuid(WebClientInformation clientInformation,
                                                                             String relatedObjectGuid)
 {
     using (WebServiceContext context = GetWebServiceContext(clientInformation))
     {
         try
         {
             return(ReferenceManager.GetReferenceRelationsByGuid(context, relatedObjectGuid));
         }
         catch (Exception exception)
         {
             WebServiceData.LogManager.LogError(context, exception);
             throw;
         }
     }
 }