Example #1
0
        private void CloneValues(YmnosGroup source)
        {
            if (source.Prosomoion != null)
            {
                Prosomoion = new Prosomoion(source.Prosomoion);
            }

            if (source.Annotation != null)
            {
                Annotation = new ItemText(source.Annotation);
            }

            Ihos = source.Ihos;
        }
Example #2
0
 public bool Equals(Prosomoion item)
 {
     return(base.Equals(item) && Self.Equals(item.Self));
 }
Example #3
0
 public Prosomoion(Prosomoion source) : base(source)
 {
     Self = source.Self;
 }