public int CompareTo(IRtmLocation other) { if (other == null) { return(1); } return(string.Compare(Id, other.Id, StringComparison.Ordinal)); }
public bool Equals(IRtmLocation other) { return(other != null && string.Equals(Id, other.Id)); }