Created
March 22, 2019 13:06
-
-
Save rinaldodev/259c586c62dffd041946c58f03c27f35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Usuario { | |
@Id | |
private Long id; | |
@Column | |
private String primeiroNome; | |
@Column | |
private String sobrenome; | |
} | |
public class CadastroUsuarioService { | |
public void cadastrarNovoUsuario(Usuario usuario) { | |
// cadastra novo usuario | |
} | |
public void atualizarUsuario(Usuario usuario) { | |
// atualiza dados do usuario | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment