package com.bookshop.solid.isp;
import com.bookshop.domain.Book;
import com.bookshop.domain.Customer;
/** One role, one interface: serving customers at the till. */
public interface Bookseller {
String sell(Book book, Customer customer);
}
package com.bookshop.solid.isp;
import com.bookshop.domain.Book;
import com.bookshop.domain.Customer;
/** One role, one interface: serving customers at the till. */
public interface Bookseller {
String sell(Book book, Customer customer);
}