Uses of Class
com.nelioalves.cursomc.dto.CategoriaDTO
-
Packages that use CategoriaDTO Package Description com.nelioalves.cursomc.resources com.nelioalves.cursomc.services -
-
Uses of CategoriaDTO in com.nelioalves.cursomc.resources
Methods in com.nelioalves.cursomc.resources that return types with arguments of type CategoriaDTO Modifier and Type Method Description org.springframework.http.ResponseEntity<List<CategoriaDTO>>CategoriaResource. findAll()Procura todas as Categoriasorg.springframework.http.ResponseEntity<org.springframework.data.domain.Page<CategoriaDTO>>CategoriaResource. findPage(Integer page, Integer linesPerPage, String direction, String orderBy)Procura Categorias e os retornam em um página(Page)Methods in com.nelioalves.cursomc.resources with parameters of type CategoriaDTO Modifier and Type Method Description org.springframework.http.ResponseEntity<Void>CategoriaResource. insert(@Valid CategoriaDTO categoriaDTO)Insere uma Categoriaorg.springframework.http.ResponseEntity<Categoria>CategoriaResource. update(@Valid CategoriaDTO categoriaDTO, Integer id)Atualiza um Categoria -
Uses of CategoriaDTO in com.nelioalves.cursomc.services
Methods in com.nelioalves.cursomc.services with parameters of type CategoriaDTO Modifier and Type Method Description CategoriaCategoriaService. toCategoria(CategoriaDTO categoriaDTO)Converte um CategoriaDTO em uma Categoria
-