Uses of Class
com.cyran.tp.server.products.Products
Package | Description |
---|---|
com.cyran.tp.server.orders | |
com.cyran.tp.server.products |
-
Uses of Products in com.cyran.tp.server.orders
Methods in com.cyran.tp.server.orders that return Products Modifier and Type Method Description Products
BoughtProducts. getProduct()
Gets original productMethods in com.cyran.tp.server.orders with parameters of type Products Modifier and Type Method Description void
BoughtProducts. setProduct(Products product)
Sets reference to original product -
Uses of Products in com.cyran.tp.server.products
Methods in com.cyran.tp.server.products that return Products Modifier and Type Method Description Products[]
ProductsRepository. getFirstProducts(java.lang.Integer count)
Selects first n productsProducts
ProductsRepository. getProductAccordingName(java.lang.String name)
Get product according nameMethods in com.cyran.tp.server.products that return types with arguments of type Products Modifier and Type Method Description java.util.List<Products>
ProductClassRepository. all()
Gets all Products from DBjava.util.List<Products>
ProductsRepository. findAll()
Gets all productsMethods in com.cyran.tp.server.products with parameters of type Products Modifier and Type Method Description static ProductsDTO[]
ProductsUtils. productsToDtoMapping(Products[] products)
Creates UserDTO instances from Product instancesstatic ProductsDTO
ProductsUtils. productToDtoMapping(Products product)
Creates UserDTO instance from Product instancevoid
ProductClassRepository. save(Products emp)
Saves product to DBMethod parameters in com.cyran.tp.server.products with type arguments of type Products Modifier and Type Method Description static ProductsDTO[]
ProductsUtils. productsToDtoMapping(java.util.List<Products> products)
Creates ProductDTO instances from list of Product instances