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

Public Member Functions

 TouchPointResults ()
 
java.util.List getTouchPointList ()
 

Detailed Description

Author
llturro

Definition at line 11 of file TouchPointResults.java.

Constructor & Destructor Documentation

◆ TouchPointResults()

org.turro.crm.search.TouchPointResults.TouchPointResults ( )

Definition at line 13 of file TouchPointResults.java.

13  {
14  }

Member Function Documentation

◆ getTouchPointList()

java.util.List org.turro.crm.search.TouchPointResults.getTouchPointList ( )

Definition at line 16 of file TouchPointResults.java.

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

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