示例#1
0
 protected bool Equals(SearchResponse other)
 {
     return(Transactions.SequenceEqual(other.Transactions) &&
            string.Equals(TotalResults, other.TotalResults) &&
            IsPreviousPage.Equals(other.IsPreviousPage) &&
            IsNextPage.Equals(other.IsNextPage) &&
            FirstResult == other.FirstResult);
 }