public bool SameSpot(Seating other)
 {
     if (other.GetTable().Equals(table) && other.GetSeat().Equals(seat))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }