Package de.hybris.platform.b2b.dao
Interface B2BUnitDao
-
- All Superinterfaces:
GenericDao<B2BUnitModel>
- All Known Implementing Classes:
DefaultB2BUnitDao
public interface B2BUnitDao extends GenericDao<B2BUnitModel>
A data access toB2BUnitModel- Spring Bean ID:
- b2bOrderDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<B2BCustomerModel>findB2BUnitMembersByGroup(B2BUnitModel unit, java.lang.String userGroupId)Returns all member of the B2BUnit who are also member of the group with the userGroupId passed in
-
-
-
Method Detail
-
findB2BUnitMembersByGroup
java.util.List<B2BCustomerModel> findB2BUnitMembersByGroup(B2BUnitModel unit, java.lang.String userGroupId)
Returns all member of the B2BUnit who are also member of the group with the userGroupId passed in- Parameters:
unit- - The B2BUnitModel whose member we are going to selectuserGroupId- - The uid of the UserGroup- Returns:
- List
B2BCustomers in B2BUnit who are members of the group with uid userGroupId
-
-