Package customer
Interface IGiveBetList
- All Known Implementing Classes:
Customer,GoldCustomer,PlatinumCustomer
Interface for classes that provide access to a list of customer bets.
Implementing classes should provide functionality for retrieving a list of bets placed by a customer.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves the list of bets associated with a customer.
-
Method Details
-
getCustomerBetList
List<CustomerBet> getCustomerBetList()Retrieves the list of bets associated with a customer.- Returns:
- A
ListofCustomerBetobjects representing the bets placed by the customer.
-