Inheritance: ITags
示例#1
0
文件: Tags.cs 项目: Cyarix/PassFruit
 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);
 }
示例#2
0
 internal Account(IFieldTypes fieldTypes)
 {
     Tags = new Tags(Id);
     _fields = new List<IField>();
     _fieldTypes = fieldTypes;
 }