- renamed allSomeEntities() to fetchAllSomeEntities()
- maybe removed deprecated or not recommended business methods
- if a method fetches e.g. a limited list of "Bar" entities, limited by an
entity "Foo" it must be named "fetchAllBarsByFoo()"
Signed-off-by: Roland Häder <roland@mxchange.org>
* <p>
* @return A list with all business contacts
*/
- List<BasicData> allBusinessBasicData ();
+ List<BasicData> fetchAllBusinessBasicData ();
}
* <p>
* @return All branch offices
*/
- List<BranchOffice> allBranchOffices ();
+ List<BranchOffice> fetchAllBranchOffices ();
}
* <p>
* @return A list with all company departments
*/
- List<Department> allDepartments ();
+ List<Department> fetchAllDepartments ();
}
* <p>
* @return A list of all company employees
*/
- List<Employable> allEmployees ();
+ List<Employable> fetchAllEmployees ();
}
* <p>
* @return A list of all headquarters
*/
- List<Headquarter> allHeadquarters ();
+ List<Headquarter> fetchAllHeadquarters ();
}
* <p>
* @return A list with all opening times
*/
- List<OpeningTime> allOpeningTimes ();
+ List<OpeningTime> fetchAllOpeningTimes ();
}