Advertisement
Guest User

Untitled

a guest
Feb 25th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1.     // Chamando seu DAL no Form
  2.     FuncionarioDAL().ListarServicos((int)comboBox1.SelectedValue);
  3.  
  4.     // DAL
  5.     // Método que recebe o Id do Funcionario
  6.     public DataTable ListarServicos(int IdFuncionario)
  7.     {
  8.         // Sua implementação aqui
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement