public double Visit(Book book)
 {
     return GetPostage(book);
 }
Пример #2
0
 public double Visit(Book book)
 {
     return book.Weight * 3;
 }