public bool Equals(DiscrepancyResponse other)
        {
            if (string.IsNullOrEmpty(ReferenceID))
            {
                return(false);
            }

            return(ReferenceID.Equals(other.ReferenceID));
        }
Ejemplo n.º 2
0
    public void RebuildReferences(GenericCollection in_Root)
    {
        if (!ReferenceID.Equals(Guid.Empty))
        {
            Reference = in_Root.FindMember(ReferenceID);
        }

        FamilyTree.RebuildReferences(in_Root);
    }