Uses of Class
com.nelioalves.cursomc.domain.Produto
-
Packages that use Produto Package Description com.nelioalves.cursomc.domain com.nelioalves.cursomc.dto com.nelioalves.cursomc.repositories com.nelioalves.cursomc.resources com.nelioalves.cursomc.services -
-
Uses of Produto in com.nelioalves.cursomc.domain
Methods in com.nelioalves.cursomc.domain that return Produto Modifier and Type Method Description ProdutoItemPedido. getProduto()ProdutoItemPedidoPK. getProduto()Methods in com.nelioalves.cursomc.domain that return types with arguments of type Produto Modifier and Type Method Description List<Produto>Categoria. getProdutosList()Methods in com.nelioalves.cursomc.domain with parameters of type Produto Modifier and Type Method Description voidItemPedido. setProduto(Produto produto)voidItemPedidoPK. setProduto(Produto produto)Method parameters in com.nelioalves.cursomc.domain with type arguments of type Produto Modifier and Type Method Description voidCategoria. setProdutosList(List<Produto> produtoList)Constructors in com.nelioalves.cursomc.domain with parameters of type Produto Constructor Description ItemPedido(Produto produto, Pedido pedido, Double desconto, Integer quantidade, Double preco) -
Uses of Produto in com.nelioalves.cursomc.dto
Constructors in com.nelioalves.cursomc.dto with parameters of type Produto Constructor Description ProdutoDTO(Produto produto) -
Uses of Produto in com.nelioalves.cursomc.repositories
Methods in com.nelioalves.cursomc.repositories that return types with arguments of type Produto Modifier and Type Method Description org.springframework.data.domain.Page<Produto>ProdutoRepository. findDistinctByNomeContainingAndCategoriasIn(String nome, List<Categoria> categorias, org.springframework.data.domain.Pageable pageable)Procura por Produtos com suas Categorias -
Uses of Produto in com.nelioalves.cursomc.resources
Methods in com.nelioalves.cursomc.resources that return types with arguments of type Produto Modifier and Type Method Description org.springframework.http.ResponseEntity<Produto>ProdutoResource. find(Integer id)Procura um Produto por id -
Uses of Produto in com.nelioalves.cursomc.services
Methods in com.nelioalves.cursomc.services that return Produto Modifier and Type Method Description ProdutoProdutoService. find(Integer id)Procura um ProdutoMethods in com.nelioalves.cursomc.services that return types with arguments of type Produto Modifier and Type Method Description org.springframework.data.domain.Page<Produto>ProdutoService. findDistinctByNomeContainingAndCategoriaIn(String nome, List<Integer> categoriaList, org.springframework.data.domain.Pageable pageable)Procura Produtos e os retornam em um Page
-