Interface CustomerListService
- All Known Implementing Classes:
DefaultCustomerListService
public interface CustomerListService
Customer List Service interface holding service layer methods for dealing with Customer List
-
Method Summary
Modifier and TypeMethodDescriptiongetCustomerListForEmployee(String customerListUid, String employeeUid) retrieves a specific customer list model based on its IDgetCustomerListsForEmployee(String employeeUid) Gets list of customer lists available for specific employee
-
Method Details
-
getCustomerListsForEmployee
Gets list of customer lists available for specific employee- Parameters:
employeeUid- the employee to get the list for- Returns:
- set containing matching customer list model
-
getCustomerListForEmployee
retrieves a specific customer list model based on its ID- Parameters:
customerListUid- the Id of the customer list model to retrieve its dataemployeeUid- the employee UId for which this customer list belongs to- Returns:
- customer list model
-