Interface BmPartyBillDao
- All Superinterfaces:
de.hybris.platform.servicelayer.internal.dao.GenericDao<BmPartyBillModel>
- All Known Implementing Classes:
DefaultBmPartyBillDao
@Deprecated(since="2208")
public interface BmPartyBillDao
extends de.hybris.platform.servicelayer.internal.dao.GenericDao<BmPartyBillModel>
Deprecated.
2208
Data access object for
BmPartyBillModels.- Since:
- 2108
-
Method Summary
Modifier and TypeMethodDescriptionfindUnique(Map<String, ? extends Object> params) Deprecated.Searches for a unique model based on given parameters.getNumberOfPartyBillsFor(BmPartyBillContext bmPartyBillContext) Deprecated.Retrieves the total number of party bills found for a given partyBillContext.getPartyBills(BmPartyBillContext bmPartyBillContext, Integer offset, Integer limit) Deprecated.Returns a list ofBmPartyBillModels for the given context.Methods inherited from interface de.hybris.platform.servicelayer.internal.dao.GenericDao
find, find, find, find, find
-
Method Details
-
findUnique
Deprecated.Searches for a unique model based on given parameters. If none or multiple models are found, a specific exception will be thrown.- Parameters:
params-Mapcontaining name-value pairs used for identifying the unique model- Returns:
- model for given parameter
-
getPartyBills
List<BmPartyBillModel> getPartyBills(BmPartyBillContext bmPartyBillContext, Integer offset, Integer limit) Deprecated.Returns a list ofBmPartyBillModels for the given context.- Parameters:
bmPartyBillContext- the party bill contextoffset- the offset.limit- the maximum number of returned party bills.- Returns:
- the List of
BmPartyBillModels found for the given context.
-
getNumberOfPartyBillsFor
Deprecated.Retrieves the total number of party bills found for a given partyBillContext.- Parameters:
bmPartyBillContext- the party bill context.- Returns:
- the number of party bills found.
-