Interface TuaAppliedCustomerBillingRateDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaAppliedCustomerBillingRateModel>
- All Known Implementing Classes:
DefaultTuaAppliedCustomerBillingRateDao
public interface TuaAppliedCustomerBillingRateDao
extends de.hybris.platform.servicelayer.internal.dao.GenericDao<TuaAppliedCustomerBillingRateModel>
Data access object for
TuaAppliedCustomerBillingRateModels.- Since:
- 2302
-
Method Summary
Modifier and TypeMethodDescriptiongetAppliedCustomerBillingRate(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext, Integer offset, Integer limit) Returns a list ofTuaAppliedCustomerBillingRateModels for the given context.getNumberOfAppliedCustomerBillingRatesFor(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext) Retrieves the total number of applied customer billing rate found for a given tuaAppliedCustomerBillingRateContext.Methods inherited from interface de.hybris.platform.servicelayer.internal.dao.GenericDao
find, find, find, find, find
-
Method Details
-
getAppliedCustomerBillingRate
List<TuaAppliedCustomerBillingRateModel> getAppliedCustomerBillingRate(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext, Integer offset, Integer limit) Returns a list ofTuaAppliedCustomerBillingRateModels for the given context.- Parameters:
tuaAppliedCustomerBillingRateContext- the applied customer billing rate contextoffset- the offset.limit- the maximum number of returned applied customer billing rates.- Returns:
- the List of
TuaAppliedCustomerBillingRateModels found for the given context.
-
getNumberOfAppliedCustomerBillingRatesFor
Integer getNumberOfAppliedCustomerBillingRatesFor(TuaAppliedCustomerBillingRateContext tuaAppliedCustomerBillingRateContext) Retrieves the total number of applied customer billing rate found for a given tuaAppliedCustomerBillingRateContext.- Parameters:
tuaAppliedCustomerBillingRateContext- the applied customer billing rate context.- Returns:
- the number of applied customer billing rates found.
-