Skip to content

Instantly share code, notes, and snippets.

@kubawieczorek
Last active December 26, 2019 12:29
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/52d95466d5a29d4ca3bd1766b9206fcd to your computer and use it in GitHub Desktop.
Save kubawieczorek/52d95466d5a29d4ca3bd1766b9206fcd 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);
return newClient;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment