Пример #1
0
        public List <teste> Teste()
        {
            testeDAO     tDAO      = new testeDAO();
            List <teste> listTeste = tDAO.GetListTesteDB(out string messsage);

            return(listTeste);
        }
Пример #2
0
        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");
            }
        }
Пример #3
0
        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");
            }
        }
Пример #4
0
        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");
            }
        }