protected bool Equals(Location other)
 {
     return Id == other.Id;
 }
 public double DistanceFrom(Location point)
 {
     return Math.Sqrt(Math.Pow(point.X - X, 2) + Math.Pow(point.Y - Y, 2));
 }