protected bool Equals(ObservationDAO other)
        {
            if (other == null)
            {
                throw new ArgumentNullException();
            }

            return(Id == other.Id);
        }
Beispiel #2
0
 public void Add(ObservationDAO observation)
 {
     Observations.Add(observation);
 }