1 2 package cmpdb; 3 4 5 8 public interface OfficeTblLocalHome extends javax.ejb.EJBLocalHome { 9 10 11 12 15 cmpdb.OfficeTblLocal findByPrimaryKey(java.lang.Integer key) throws javax.ejb.FinderException ; 16 17 public cmpdb.OfficeTblLocal create(java.lang.Integer officeNum, java.lang.String city, java.lang.String region, java.lang.Integer targetSales, java.sql.Date openDate, java.sql.Date closeDate, cmpdb.OfficeTypeCodeTblLocal typeCode) throws javax.ejb.CreateException ; 18 19 java.util.Collection findByOfficeNum(java.lang.Integer officeNum) throws javax.ejb.FinderException ; 20 21 java.util.Collection findByCity(java.lang.String city) throws javax.ejb.FinderException ; 22 23 java.util.Collection findByRegion(java.lang.String region) throws javax.ejb.FinderException ; 24 25 java.util.Collection findByTargetSales(java.lang.Integer targetSales) throws javax.ejb.FinderException ; 26 27 28 } 29 | Popular Tags |