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

            if (t == null)
            {
                return(false);
            }
            if (Id.Equals(t.Id))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
예제 #2
0
 public HealthDataEN(HealthDataEN healthData)
 {
     this.init(Id, healthData.Description, healthData.Language, healthData.System, healthData.Code, healthData.Display);
 }