Interface CustomerListService
-
- All Known Implementing Classes:
DefaultCustomerListService
public interface CustomerListServiceCustomer List Service interface holding service layer methods for dealing with Customer List
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomerListModelgetCustomerListForEmployee(java.lang.String customerListUid, java.lang.String employeeUid)retrieves a specific customer list model based on its IDjava.util.List<CustomerListModel>getCustomerListsForEmployee(java.lang.String employeeUid)Gets list of customer lists available for specific employee
-
-
-
Method Detail
-
getCustomerListsForEmployee
java.util.List<CustomerListModel> getCustomerListsForEmployee(java.lang.String employeeUid)
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
CustomerListModel getCustomerListForEmployee(java.lang.String customerListUid, java.lang.String employeeUid)
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
-
-