Beispiel #1
0
 public string Usuarios_RetornaNome(int idfuncionario)
 {
     FUNCIONARIOTableAdapter fun = new FUNCIONARIOTableAdapter();
     var teste = fun.RetornaNomeFuncionarioporId(idfuncionario);
     if (teste == null)
         return "";
     else
         return teste.ToString();
 }