Uses of Class
org.cocome.tradingsystem.inventory.application.store.ProductWithStockItemTO

Packages that use ProductWithStockItemTO
org.cocome.tradingsystem.inventory.application.store   
org.cocome.tradingsystem.inventory.application.store.impl   
 

Uses of ProductWithStockItemTO in org.cocome.tradingsystem.inventory.application.store
 

Fields in org.cocome.tradingsystem.inventory.application.store with type parameters of type ProductWithStockItemTO
protected  java.util.List<ProductWithStockItemTO> SaleTO.productTOs
           
 

Methods in org.cocome.tradingsystem.inventory.application.store that return ProductWithStockItemTO
 ProductWithStockItemTO StoreIf.changePrice(StockItemTO stockItemTO)
          Updates sales price of a stock item.
 ProductWithStockItemTO CashDeskConnectorIf.getProductWithStockItem(long productBarCode)
          Determines product and the item in the stock of the store by the given barcode.
 

Methods in org.cocome.tradingsystem.inventory.application.store that return types with arguments of type ProductWithStockItemTO
 java.util.List<ProductWithStockItemTO> StoreIf.getProductsWithLowStock()
          Determines products and stock items which are nearly out of stock, meaning amount is lower than 10% of maximal stock.
 java.util.List<ProductWithStockItemTO> SaleTO.getProductTOs()
          Gets list of products and corresponding item in stock which the sale consists of.
 

Method parameters in org.cocome.tradingsystem.inventory.application.store with type arguments of type ProductWithStockItemTO
 void SaleTO.setProductTOs(java.util.List<ProductWithStockItemTO> productTOs)
          Sets list of products for the sale.
 

Uses of ProductWithStockItemTO in org.cocome.tradingsystem.inventory.application.store.impl
 

Methods in org.cocome.tradingsystem.inventory.application.store.impl that return ProductWithStockItemTO
 ProductWithStockItemTO StoreImpl.changePrice(StockItemTO stockItemTO)
           
static ProductWithStockItemTO FillTransferObjects.fillProductWithStockItemTO(StockItem stockitem)
           
 ProductWithStockItemTO StoreImpl.getProductWithStockItem(long productBarCode)
           
 

Methods in org.cocome.tradingsystem.inventory.application.store.impl that return types with arguments of type ProductWithStockItemTO
 java.util.List<ProductWithStockItemTO> StoreImpl.getProductsWithLowStock()