package ch6.bookstore;

public interface BuyBookProcess {
    void buyBook(Book book, int amount);
}
