1 2 package cmpdb; 3 4 5 8 public interface SalesRepTblLocalHome extends javax.ejb.EJBLocalHome { 9 10 11 12 15 cmpdb.SalesRepTblLocal findByPrimaryKey(java.lang.Integer key) throws javax.ejb.FinderException ; 16 17 public cmpdb.SalesRepTblLocal create(java.lang.Integer salesRepNum, java.lang.String firstName, java.lang.String lastName, java.lang.Integer quota, java.math.BigDecimal ytdSales, java.math.BigDecimal lastYrSales, java.math.BigDecimal commissionRate, java.lang.Integer travelAllow, java.sql.Date hireDate, java.lang.Float twoYrSalesGoal, cmpdb.OfficeTblLocal officeNum) throws javax.ejb.CreateException ; 18 19 java.util.Collection findBySalesRepNum(java.lang.Integer salesRepNum) throws javax.ejb.FinderException ; 20 21 java.util.Collection findByFirstName(java.lang.String firstName) throws javax.ejb.FinderException ; 22 23 java.util.Collection findByLastName(java.lang.String lastName) throws javax.ejb.FinderException ; 24 25 java.util.Collection findByQuota(java.lang.Integer quota) throws javax.ejb.FinderException ; 26 27 java.util.Collection findByYtdSales(java.math.BigDecimal ytdSales) throws javax.ejb.FinderException ; 28 29 java.util.Collection findByLastYrSales(java.math.BigDecimal lastYrSales) throws javax.ejb.FinderException ; 30 31 java.util.Collection findByCommissionRate(java.math.BigDecimal commissionRate) throws javax.ejb.FinderException ; 32 33 java.util.Collection findByTravelAllow(java.lang.Integer travelAllow) throws javax.ejb.FinderException ; 34 35 java.util.Collection findByTwoYrSalesGoal(java.lang.Float twoYrSalesGoal) throws javax.ejb.FinderException ; 36 37 38 } 39 | Popular Tags |