org.springframework.http.ResponseEntity<Customer> |
CustomerController.createCustomer(Customer customer) |
List<Customer> |
CustomerRepository.findByFirstName(String name) |
List<Customer> |
CustomerRepository.findByLastName(String name) |
org.springframework.http.ResponseEntity<Customer> |
CustomerController.findCustomer(long id) |
List<Customer> |
CustomerController.getAllCustomers(String sortBy) |
org.springframework.http.ResponseEntity<Customer> |
CustomerController.patchCustomer(Customer customer,
long id) |
List<Customer> |
CustomerController.searchByFirstName(String name) |
List<Customer> |
CustomerController.searchByLastName(String name) |
org.springframework.http.ResponseEntity<Customer> |
CustomerController.updateCustomer(Customer customer,
long id) |