Skip to content

Instantly share code, notes, and snippets.

@kubawieczorek
Created December 26, 2019 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kubawieczorek/ba421305fa5a5fdb46f95bd89c62dae7 to your computer and use it in GitHub Desktop.
Save kubawieczorek/ba421305fa5a5fdb46f95bd89c62dae7 to your computer and use it in GitHub Desktop.
@Transactional
public Client saveNewClient(ClientDto clientDto) {
Client client = new Client();
client.setName(clientDto.getName());
client.setEmail(clientDto.getEmail());
Client newClient = clientRepository.save(client);
accountService.registerNewAccount(newClient);
return newClient;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment