1 2 package cmpdb; 3 4 import java.math.BigDecimal ; 5 import java.util.Collection ; 6 7 8 11 public interface ProductLocalBusiness { 12 Integer getProductId(); 13 14 BigDecimal getPurchaseCost(); 15 16 void setPurchaseCost(BigDecimal purchaseCost); 17 18 Integer getQuantityOnHand(); 19 20 void setQuantityOnHand(Integer quantityOnHand); 21 22 BigDecimal getMarkup(); 23 24 void setMarkup(BigDecimal markup); 25 26 String getAvailable(); 27 28 void setAvailable(String available); 29 30 String getDescription(); 31 32 void setDescription(String description); 33 34 cmpdb.ManufactureLocal getManufactureId(); 35 36 void setManufactureId(cmpdb.ManufactureLocal manufactureId); 37 38 cmpdb.ProductCodeLocal getProductCode(); 39 40 void setProductCode(cmpdb.ProductCodeLocal productCode); 41 42 Collection getOrdersBean(); 43 44 void setOrdersBean(Collection ordersBean); 45 46 } 47 | Popular Tags |