Interface AgentDao

All Known Implementing Classes:
DefaultAgentDao

public interface AgentDao
Dao for finding agets and agent groups.
Spring Bean ID:
agentDao
  • Method Details

    • findAgentGroups

      List<CsAgentGroupModel> findAgentGroups()
      Find all agent groups.
      Returns:
      the list of found CsAgentGroupModel objects.
    • findAgentGroupsByBaseStore

      List<CsAgentGroupModel> findAgentGroupsByBaseStore(BaseStoreModel baseStore)
      Find agent groups by base store.
      Parameters:
      baseStore - the base store for which search will be executed
      Returns:
      the list of found CsAgentGroupModel objects.
    • findAgents

      List<EmployeeModel> findAgents()
      Find all agents.
      Returns:
      the list of found EmployeeModel objects.
    • findAgentsByBaseStore

      List<EmployeeModel> findAgentsByBaseStore(BaseStoreModel baseStore)
      Find agents by base store.
      Parameters:
      baseStore - the base store for which search will be executed
      Returns:
      the list of found EmployeeModel objects.