package com.bookshop.solid.isp;

import com.bookshop.domain.Book;

/** One role, one interface: keeping the shelves full. */
public interface StockManager {

    void restock(Book book, int copies);
}
