cesarnascimento

NegocioFuncionario.java interface

Apr 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1. package br.com.artvisual.project.interfaces;
  2.  
  3. import java.io.IOException;
  4.  
  5. import br.com.artvisual.project.entidades.Funcionario;
  6.  
  7. public interface INegocioFuncionario {
  8.     void adicionarFuncionario(Funcionario funcionario) throws ClassNotFoundException, IOException;
  9.     Funcionario buscarFuncionario(String cpf) throws ClassNotFoundException, IOException;
  10.     void removerFuncionario(String cpf) throws ClassNotFoundException, IOException;
  11.     void alterarFuncionario(String cpf, Funcionario novoFuncionario) throws ClassNotFoundException, IOException;
  12. }
Add Comment
Please, Sign In to add comment