package auction.dao; import auction.model.*; /** * Business DAO operations related to the Item entity. * * @see Item * @author Christian Bauer */ public interface ItemDAO extends GenericDAO { Bid getMaxBid(Long itemId); Bid getMinBid(Long itemId); }