public bool Equals(ArticleEntity other) { bool images = Image.Equals(other.Image); bool news = News.Equals(other.News); bool quotes = Quote.Equals(other.Quote); bool spaceship = Spaceship.Equals(other.Spaceship); bool weather = Weather.Equals(other.Weather); return(images && news && quotes && spaceship && weather); }