@Albin7326@suppo.fi to Programmer Humor@lemmy.ml • 2 years agoComment Your Code Peoplesuppo.fiimagemessage-square122fedilinkarrow-up11.54Karrow-down126
arrow-up11.51Karrow-down1imageComment Your Code Peoplesuppo.fi@Albin7326@suppo.fi to Programmer Humor@lemmy.ml • 2 years agomessage-square122fedilink
minus-squareAlien Nathan Edwardlinkfedilink13•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()) }`