private bool existeDefeito(Defeito item) { Dictionary <string, string> param = new Dictionary <string, string>(); param.Add(ItemTrabalho.ID, Convert.ToString(item.Id)); DefeitoDAO iDAO = new DefeitoDAO(); List <Defeito> listaItem = iDAO.recuperar(param); if (listaItem.Count > 0) { return(true); } return(false); }
private void preencherLista(Dictionary <string, string> param) { DefeitoDAO tDAO = new DefeitoDAO(); tblDefeito.ItemsSource = tDAO.recuperar(param); }