Skip to content

Instantly share code, notes, and snippets.

@kubawieczorek
Created December 26, 2019 12:30
@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