Ejemplo n.º 1
0
        public static List <Nutricionista> ListarN()
        {
            SqlConnection Conexao = new SqlConnection(ConfigurationManager.ConnectionStrings["LifeMore"].ConnectionString);

            Conexao.Open();

            SqlCommand Comando = new SqlCommand();

            Comando.Connection = Conexao;

            Comando.CommandText = "SELECT * FROM Nutricionista;";

            SqlDataReader Leitor = Comando.ExecuteReader();

            List <Nutricionista> Nutricionistas = new List <Nutricionista>();

            while (Leitor.Read())
            {
                Nutricionista N = new Nutricionista();
                N.Cod           = (Int32)Leitor["Cod"];
                N.CPF           = (String)Leitor["CPF_Nutri"];
                N.Senha         = (String)Leitor["Senha"];
                N.Idade         = (Int32)Leitor["Idade"];
                N.Endereco      = Leitor["Endereco"].ToString();
                N.Email         = ((String)Leitor["Email"]);
                N.Telefone      = (String)Leitor["Telefone"];
                N.Nome          = ((String)Leitor["Nome"]);
                N.ImagemPerfilN = (String)Leitor["Foto"];
                N.LocalTrabalho = (String)Leitor["LocalTrabalho"];
                N.crm           = (String)Leitor["CRM"];
                N.Bio           = ((String)Leitor["Bio"]);

                Nutricionistas.Add(N);
            }

            Conexao.Close();

            return(Nutricionistas);
        }
Ejemplo n.º 2
0
        public Boolean BuscarDados(Int32 ID)
        {
            SqlConnection Conexao = new SqlConnection(ConfigurationManager.ConnectionStrings["LifeMore"].ConnectionString);

            Conexao.Open();

            SqlCommand Comando = new SqlCommand();

            Comando.Connection  = Conexao;
            Comando.CommandText = "SELECT * FROM Nutricionista WHERE Cod = @ID;";
            Comando.Parameters.AddWithValue("@ID", ID);

            SqlDataReader Leitor = Comando.ExecuteReader();

            Boolean resultado = Leitor.HasRows;

            Leitor.Read();

            this.Cod = (Int32)Leitor["Cod"];
            Nutricionista Nutricionistas = new Nutricionista((Int32)Leitor["Cod"]);

            this.Email         = (String)Leitor["Email"];
            this.Senha         = (String)Leitor["Senha"];
            this.Endereco      = (String)Leitor["Endereco"];
            this.Nome          = (String)Leitor["Nome"];
            this.Idade         = (Int32)Leitor["Idade"];
            this.ImagemPerfilN = (String)Leitor["Foto"];
            this.CPF           = (String)Leitor["CPF_Nutri"];
            this.Bio           = (String)Leitor["Bio"];
            this.LocalTrabalho = (String)Leitor["LocalTrabalho"];
            this.crm           = (String)Leitor["CRM"];
            this.Telefone      = (String)Leitor["Telefone"];

            Conexao.Close();
            return(resultado);
        }