public bool IsTag(Book b, string tag) { return b.Genre == tag; }
public bool Equals(Book other) { return Author.Equals(other.Author) && Title.Equals(other.Title); }