package app.repository; import javax.persistence.EntityManager; import br.com.caelum.vraptor.ioc.Component; import app.model.Product; @Component public class ProductRepositoryImpl extends Repository implements ProductRepository { ProductRepositoryImpl(EntityManager entityManager) { super(entityManager); } }