상속: 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
파일: Account.cs 프로젝트: Cyarix/PassFruit
 internal Account(IFieldTypes fieldTypes)
 {
     Tags = new Tags(Id);
     _fields = new List<IField>();
     _fieldTypes = fieldTypes;
 }