Interface CustomerPhoneService

All Known Implementing Classes:
CustomerPhoneServiceImpl

public interface CustomerPhoneService
  • Method Details

    • saveCustomerPhone

      CustomerPhone saveCustomerPhone(CustomerPhone customerPhone)
    • readActiveCustomerPhonesByCustomerId

      List<CustomerPhone> readActiveCustomerPhonesByCustomerId(Long customerId)
    • readCustomerPhoneById

      CustomerPhone readCustomerPhoneById(Long customerPhoneId)
    • makeCustomerPhoneDefault

      void makeCustomerPhoneDefault(Long customerPhoneId, Long customerId)
    • deleteCustomerPhoneById

      void deleteCustomerPhoneById(Long customerPhoneId)
    • findDefaultCustomerPhone

      CustomerPhone findDefaultCustomerPhone(Long customerId)
    • readAllCustomerPhonesByCustomerId

      List<CustomerPhone> readAllCustomerPhonesByCustomerId(Long customerId)
    • create

      CustomerPhone create()