Albin Jose@suppo.fi to Programmer Humor@lemmy.ml · 2 years agoComment Your Code Peoplesuppo.fiimagemessage-square23fedilinkarrow-up1129arrow-down15
arrow-up1124arrow-down1imageComment Your Code Peoplesuppo.fiAlbin Jose@suppo.fi to Programmer Humor@lemmy.ml · 2 years agomessage-square23fedilink
minus-squareAlien Nathan Edward@lemm.eecakelinkfedilinkarrow-up10·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()) }`