Пример #1
0
 public bool Equals(EffectMount other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && other.m_date.Equals(m_date) && other.m_modelId == m_modelId &&
            other.m_mountId == m_mountId);
 }
Пример #2
0
 public EffectMount(EffectMount copy)
     : this (copy.Id, copy.m_mountId, copy.m_date, copy.m_modelId, copy)
 {
     
 }
Пример #3
0
 public bool Equals(EffectMount other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return base.Equals(other) && other.m_date.Equals(m_date) && other.m_modelId == m_modelId &&
            other.m_mountId == m_mountId;
 }
Пример #4
0
 public EffectMount(EffectMount copy)
     : this(copy.Id, copy.m_mountId, copy.m_date, copy.m_modelId, copy)
 {
 }