protected bool Equals(TrelloCardInfo other)
 {
     return(string.Equals(Id, other.Id) && string.Equals(Name, other.Name) &&
            string.Equals(ListName, other.ListName) && LastActivity.Equals(other.LastActivity) &&
            Equals(Members, other.Members) && string.Equals(Url, other.Url));
 }
示例#2
0
 protected bool Equals(TrelloCardInfo other)
 {
     return string.Equals(Id, other.Id) && string.Equals(Name, other.Name) &&
            string.Equals(ListName, other.ListName) && LastActivity.Equals(other.LastActivity) &&
            Equals(Members, other.Members) && string.Equals(Url, other.Url);
 }
示例#3
0
 private static Trello GetTrelloCard(TrelloCardInfo trelloCardInfo)
 {
     return new Trello(trelloCardInfo.Id, trelloCardInfo.Name, trelloCardInfo.Url);
 }