BrightSide Workbench Full Report + Source Code
All Classes Namespaces Files Functions Variables Pages
org.turro.crm.search.VendorResults Class Reference

Public Member Functions

 VendorResults ()
 
java.util.List getVendorList ()
 

Detailed Description

Author
llturro

Definition at line 11 of file VendorResults.java.

Constructor & Destructor Documentation

◆ VendorResults()

org.turro.crm.search.VendorResults.VendorResults ( )

Definition at line 13 of file VendorResults.java.

13  {
14  }

Member Function Documentation

◆ getVendorList()

java.util.List org.turro.crm.search.VendorResults.getVendorList ( )

Definition at line 16 of file VendorResults.java.

16  {
17  Dao dao = new CrmPU();
18  WhereClause wc = new WhereClause();
19  wc.addClause("select distinct vendor from Vendor as vendor");
20  wc.addClause("order by vendor.name");
21  return dao.getResultList(wc);
22  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: