public bool Equals(Book other)
 {
     return Author.Equals(other.Author) && Title.Equals(other.Title);
 }