public bool Equals(LocalizedInstanceKey other)
 {
     return
         (Route.Equals(other.Route) &&
          Instance.Equals(other.Instance) &&
          RowId.Equals(other.RowId));
 }
 public bool Equals(IndexedPropertyRoute other)
 {
     return(Route.Equals(other.Route) && RowId.Equals(other.RowId));
 }