public double Visit(Book book)
 {
     return GetPostage(book);
 }
 public double Visit(Book book)
 {
     return book.Weight * 3;
 }