Interface TuaBillingAccountDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaBillingAccountModel>
- All Known Implementing Classes:
DefaultTuaBillingAccountDao
public interface TuaBillingAccountDao
extends de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaBillingAccountModel>
Data access object for
TuaAccountModels.- Since:
- 2208
-
Method Summary
Modifier and TypeMethodDescriptiongetBillingAccounts(BaBillingAccountContext billingAccountContext, Integer offset, Integer limit) Returns a list ofTuaAccountModels for the given context.getNumberOfBillingAccountsFor(BaBillingAccountContext billingAccountContext) Retrieves the total number of billing accounts found for a given billingAccountContext.Methods inherited from interface de.hybris.platform.servicelayer.internal.dao.GenericDao
find, find, find, find, find
-
Method Details
-
getBillingAccounts
List<TuaAccountModel> getBillingAccounts(BaBillingAccountContext billingAccountContext, Integer offset, Integer limit) Returns a list ofTuaAccountModels for the given context.- Parameters:
billingAccountContext- the billing account contextoffset- the offset.limit- the maximum number of returned billing accounts.- Returns:
- the List of
TuaAccountModels found for the given context.
-
getNumberOfBillingAccountsFor
Retrieves the total number of billing accounts found for a given billingAccountContext.- Parameters:
billingAccountContext- the billing account context.- Returns:
- the number of products found.
-