Beispiel #1
0
        public override bool Equals(object obj)
        {
            EanEicCode other = (EanEicCode)obj;

            if (obj == null || other == null)
            {
                return(false);
            }
            return(Equals(other));
        }
Beispiel #2
0
 public Opm(EanEicCode code)
 {
     Code = code;
 }
Beispiel #3
0
 protected bool Equals(EanEicCode other)
 {
     return(string.Equals(Code, other.Code));
 }