Interface BillingTimeDao
-
- All Known Implementing Classes:
DefaultBillingTimeDao
public interface BillingTimeDaoData Access Object for looking up items related toBillingTimeModel.- Spring Bean ID:
- billingTimeDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<BillingTimeModel>findAllBillingTimes()Find allBillingTimeModels.BillingTimeModelfindBillingTimeByCode(java.lang.String code)Finds theBillingTimeModelfor the given code.
-
-
-
Method Detail
-
findAllBillingTimes
@Nonnull java.util.List<BillingTimeModel> findAllBillingTimes()
Find allBillingTimeModels.- Returns:
ListofBillingTimeModels or emptyList.
-
findBillingTimeByCode
@Nonnull BillingTimeModel findBillingTimeByCode(@Nonnull java.lang.String code)
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
-
-