Uses of Class
com.eeit87t3.tickiteasy.product.entity.ProductEntity
Packages that use ProductEntity
Package
Description
-
Uses of ProductEntity in com.eeit87t3.tickiteasy.order.entity
Methods in com.eeit87t3.tickiteasy.order.entity that return ProductEntityMethods in com.eeit87t3.tickiteasy.order.entity with parameters of type ProductEntityModifier and TypeMethodDescriptionvoidClientSideOrderDetails.setProductById(ProductEntity productById) -
Uses of ProductEntity in com.eeit87t3.tickiteasy.product.controller
Methods in com.eeit87t3.tickiteasy.product.controller that return types with arguments of type ProductEntityModifier and TypeMethodDescriptionResponseEntity<org.springframework.data.domain.Page<ProductEntity>> AdminProductAPIController.findAllProducts(String name, int page, int size) ResponseEntity<org.springframework.data.domain.Page<ProductEntity>> UserProductAPIController.findAllProducts(Integer categoryId, Integer minPrice, Integer maxPrice, String productName, int sort, int page, int size) Methods in com.eeit87t3.tickiteasy.product.controller with parameters of type ProductEntityModifier and TypeMethodDescriptionAdminProductAPIController.editProductStatusByID(int productID, ProductEntity updatedProduct) -
Uses of ProductEntity in com.eeit87t3.tickiteasy.product.entity
Methods in com.eeit87t3.tickiteasy.product.entity that return ProductEntityModifier and TypeMethodDescriptionProdFavoritesEntity.getProduct()ProductPhotoEntity.getProduct()Methods in com.eeit87t3.tickiteasy.product.entity with parameters of type ProductEntityModifier and TypeMethodDescriptionvoidProdFavoritesEntity.setProduct(ProductEntity product) voidProductPhotoEntity.setProduct(ProductEntity product) Constructors in com.eeit87t3.tickiteasy.product.entity with parameters of type ProductEntityModifierConstructorDescriptionProdFavoritesEntity(Member member, ProductEntity product) ProductPhotoEntity(Integer photoID, String fileName, ProductEntity product) ProductPhotoEntity(String fileName, ProductEntity product) -
Uses of ProductEntity in com.eeit87t3.tickiteasy.product.repository
Methods in com.eeit87t3.tickiteasy.product.repository that return types with arguments of type ProductEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<ProductEntity> ProductRepo.findByProductNameContaining(String productName, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<ProductEntity> ProductRepo.findProductsByFilter(Integer categoryId, Integer minPrice, Integer maxPrice, String productName, org.springframework.data.domain.Pageable pageable) ProdFavoritesRepo.findProductsByMemberAndFavoriteCount(Integer memberID, Integer favoriteCount) ProductRepo.findRecommendedProductsByTag(Integer tagId, Integer currentProductId) Methods in com.eeit87t3.tickiteasy.product.repository with parameters of type ProductEntity -
Uses of ProductEntity in com.eeit87t3.tickiteasy.product.service
Methods in com.eeit87t3.tickiteasy.product.service that return ProductEntityModifier and TypeMethodDescriptionProductService.createProduct(ProductDTO productDTO, MultipartFile imageFile) ProductService.editProductById(Integer productID, ProductDTO productDTO, MultipartFile imageFile) ProductService.editProductStatusById(Integer productID, ProductEntity updatedProduct) ProductService.findProductById(Integer productID) Methods in com.eeit87t3.tickiteasy.product.service that return types with arguments of type ProductEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<ProductEntity> UserProductService.findProductsByFilter(Integer categoryId, Integer minPrice, Integer maxPrice, String productName, int sort, int page, int size) ProductService.getAllProducts()UserProdFavoritesService.getMemberFavorites(Member member) org.springframework.data.domain.Page<ProductEntity> ProductService.getProductsByName(String name, int page, int size) Methods in com.eeit87t3.tickiteasy.product.service with parameters of type ProductEntityModifier and TypeMethodDescriptionProductPhotoService.createProductPhoto(MultipartFile imageFile, ProductEntity product) ProductService.editProductStatusById(Integer productID, ProductEntity updatedProduct) ProductPhotoService.getProductPhotos(ProductEntity product) voidProdEmailService.sendRestockNotification(ProductEntity product)