Interface TuaBillingCycleSpecificationDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaBillingCycleSpecificationModel>
- All Known Implementing Classes:
DefaultTuaBillingCycleSpecificationDao
public interface TuaBillingCycleSpecificationDao
extends de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaBillingCycleSpecificationModel>
Data access object for
TuaBillingCycleSpecificationModels.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptiongetBillingCycleSpecifications(Integer offset, Integer limit) Returns a list ofTuaBillingCycleSpecificationModels for the given context.Retrieves the total number of billing cycle specifications.Methods inherited from interface de.hybris.platform.servicelayer.internal.dao.GenericDao
find, find, find, find, find
-
Method Details
-
getBillingCycleSpecifications
List<TuaBillingCycleSpecificationModel> getBillingCycleSpecifications(Integer offset, Integer limit) Returns a list ofTuaBillingCycleSpecificationModels for the given context.- Parameters:
offset- the offset.limit- the maximum number of returned billing cycle specifications.- Returns:
- the List of
TuaBillingCycleSpecificationModels found for the given context.
-
getNumberOfBillingCycleSpecifications
Integer getNumberOfBillingCycleSpecifications()Retrieves the total number of billing cycle specifications.- Returns:
- the number of billing cycle specifications found.
-