Uses of Class
org.bookstore.customer.entity.Customer
Packages that use Customer
Package
Description
-
Uses of Customer in org.bookstore.customer.service
Methods in org.bookstore.customer.service that return CustomerModifier and TypeMethodDescriptionCustomerService.findCustomer(long id) Finds a customer by identifier.CustomerService.registerCustomer(Customer customer) Registers a customer.CustomerService.updateCustomer(Customer customer) Updates the data of a customer.Methods in org.bookstore.customer.service with parameters of type CustomerModifier and TypeMethodDescriptionCustomerService.registerCustomer(Customer customer) Registers a customer.CustomerService.updateCustomer(Customer customer) Updates the data of a customer. -
Uses of Customer in org.bookstore.order.entity
Methods in org.bookstore.order.entity that return CustomerMethods in org.bookstore.order.entity with parameters of type Customer -
Uses of Customer in org.bookstore.payment.service
Methods in org.bookstore.payment.service with parameters of type CustomerModifier and TypeMethodDescriptionPaymentService.makePayment(Customer customer, BigDecimal amount) Makes a credit card payment for a book order.