Albin Jose to Programmer [email protected] • 2 years agoComment Your Code Peoplesuppo.fiimagemessage-square123fedilinkarrow-up11.54K
arrow-up11.54KimageComment Your Code Peoplesuppo.fiAlbin Jose to Programmer [email protected] • 2 years agomessage-square123fedilink
minus-squareAlien Nathan Edwardlinkfedilink16•edit-22 years ago`/* Gets CustomerEntity from customer repository by customer ID or throws a customer not found exception */ public CustomerEntity getCustomerEntityById(String customerId){ customerRepository.findById(customerId).orElseThrow(new CustomerNotFoundException()) }`
`/* Gets CustomerEntity from customer repository by customer ID or throws a customer not found exception */
public CustomerEntity getCustomerEntityById(String customerId){ customerRepository.findById(customerId).orElseThrow(new CustomerNotFoundException()) }`