1 2 package cmpdb; 3 4 import java.util.Collection ; 5 6 7 10 public interface ManufactureLocalBusiness { 11 Integer getManufactureId(); 12 13 String getName(); 14 15 void setName(String name); 16 17 String getAddressline1(); 18 19 void setAddressline1(String addressline1); 20 21 String getAddressline2(); 22 23 void setAddressline2(String addressline2); 24 25 String getCity(); 26 27 void setCity(String city); 28 29 String getState(); 30 31 void setState(String state); 32 33 String getZip(); 34 35 void setZip(String zip); 36 37 String getPhone(); 38 39 void setPhone(String phone); 40 41 String getFax(); 42 43 void setFax(String fax); 44 45 String getEmail(); 46 47 void setEmail(String email); 48 49 String getRep(); 50 51 void setRep(String rep); 52 53 Collection getProductBean(); 54 55 void setProductBean(Collection productBean); 56 57 } 58 | Popular Tags |