public List <teste> Teste() { testeDAO tDAO = new testeDAO(); List <teste> listTeste = tDAO.GetListTesteDB(out string messsage); return(listTeste); }
public string UpTesteDB([FromBody] teste t) { testeDAO tDAO = new testeDAO(); if (tDAO.Put(t, out string message)) { return("registro Atualizado com sucesso"); } else { return("Nao foi possivel Atualizado o registro"); } }
public string DelTesteDB([FromBody] teste t) { testeDAO tDAO = new testeDAO(); if (tDAO.Delete(t, out string message)) { return("registro excluido com sucesso"); } else { return("nao foi possivel excluir o registro"); } }
public string testeDAO([FromBody] teste t) { testeDAO tDAO = new testeDAO(); if (tDAO.Send(t, out string message)) { return(message); } else { return("Erro na solicitação"); } }