Interface BillingTimeDao
- All Known Implementing Classes:
DefaultBillingTimeDao
public interface BillingTimeDao
Data Access Object for looking up items related to
BillingTimeModel.- Spring Bean ID:
- billingTimeDao
-
Method Summary
Modifier and TypeMethodDescriptionFind allBillingTimeModels.findBillingTimeByCode(String code) Finds theBillingTimeModelfor the given code.
-
Method Details
-
findAllBillingTimes
Find allBillingTimeModels.- Returns:
ListofBillingTimeModels or emptyList.
-
findBillingTimeByCode
Finds theBillingTimeModelfor the given code.- Parameters:
code- the code of theBillingTimeModel.- Returns:
BillingTimeModelif the givencodewas found- Throws:
ModelNotFoundException- if nothing was foundAmbiguousIdentifierException- if by the given search parameters too many models where found
-