Esempio n. 1
0
    public string WScadastrarNovoUsuario(string nome, string cpf, string senha, string email, string ddd, string numTel, string endereco,
                                         Int64 numero, string bairro, string cidade, string estado)
    {
        bool retornoCDB = cdb.InserirNovoUsuario(nome, cpf, senha, email, ddd, numTel, endereco, numero, bairro, cidade, estado);

        if (retornoCDB == true)
        {
            return("OK");
        }
        else
        {
            return("Erro");
        }
    }