Beispiel #1
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            ObservationEN t = obj as ObservationEN;

            if (t == null)
            {
                return(false);
            }
            if (Identifier.Equals(t.Identifier))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #2
0
 public ObservationEN(ObservationEN observation)
 {
     this.init(Identifier, observation.MeasureType, observation.Name, observation.DateEntry, observation.Note, observation.DateAdded, observation.Diary, observation.DateObservation, observation.Category, observation.Grade, observation.Value1, observation.Value2, observation.PersonOID);
 }