public BooksGrouped(PotterLibrary book, int quantity)
 {
     Book = book;
     Quantity = quantity;
 }
 public void AddToBasket(PotterLibrary book, int quantity)
 {
     _basket.Add(new BooksGrouped(book, quantity));
 }