Exemplo n.º 1
0
 public bool CadastrarHabilidade(string habNome, string habDescricao)
 {
     habilidadeDAO = new HabilidadeDAOSQL();
     return(habilidadeDAO.CadastrarHabilidade(habNome, habDescricao));
 }
Exemplo n.º 2
0
 public List <DropDownItem> LoadHabilidades()
 {
     habilidadeDAO = new HabilidadeDAOSQL();
     return(habilidadeDAO.LoadHabilidades());
 }