Inheritance: ITags
Exemplo n.º 1
0
 public bool Equals(Tags other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other._accountId.Equals(_accountId)
         && Equals(other._tags, _tags);
 }
Exemplo n.º 2
0
 internal Account(IFieldTypes fieldTypes)
 {
     Tags = new Tags(Id);
     _fields = new List<IField>();
     _fieldTypes = fieldTypes;
 }