示例#1
0
        //BOTÃO DELETAR QUESTÕES TECNOLOGIA
        private void btn_TeDeletar_Click(object sender, EventArgs e)
        {
            C_ControleQuestoesDados      cadastrarTecnologia = new C_ControleQuestoesDados();
            C_DalQuestoesDadosTecnologia dalTecnologia       = new C_DalQuestoesDadosTecnologia();

            if (tb_TeId.Text != "")
            {
                try
                {
                    cadastrarTecnologia.ID_Pergunta = Convert.ToInt32(tb_TeId.Text);

                    dalTecnologia.DeletarQuestaoCinema(cadastrarTecnologia);
                    MessageBox.Show("Dados deletado com sucesso");
                    MetodoDataGridTecnologia();
                    ApagarTecnologia();
                }
                catch (Exception erro)
                {
                    MessageBox.Show(erro.Message);
                }
            }
            else
            {
                MessageBox.Show("Para apagar um dado é necessário inserir o valor do ID", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
示例#2
0
        //BOTÃO ALTERAR QUESTÕES TECNOLOGIA
        private void btn_TeAlterar_Click(object sender, EventArgs e)
        {
            C_ControleQuestoesDados      cadastrarTecnologia = new C_ControleQuestoesDados();
            C_DalQuestoesDadosTecnologia dalTecnologia       = new C_DalQuestoesDadosTecnologia();

            try
            {
                if (tb_TeId.Text != "")
                {
                    cadastrarTecnologia.ID_Pergunta = Convert.ToInt32(tb_TeId.Text);
                    cadastrarTecnologia.Pergunta    = tb_TePergunta.Text;
                    cadastrarTecnologia.QuestaoA    = tb_TeQuestaoA.Text;
                    cadastrarTecnologia.QuestaoB    = tb_TeQuestaoB.Text;
                    cadastrarTecnologia.QuestaoC    = tb_TeQuestaoC.Text;
                    cadastrarTecnologia.QuestaoD    = tb_TeQuestaoD.Text;
                    cadastrarTecnologia.Resposta    = tb_TeResposta.Text;

                    dalTecnologia.EditarQuestaoTecnologia(cadastrarTecnologia);

                    MessageBox.Show("Dados Alterados com sucesso");
                    MetodoDataGridTecnologia();
                    ApagarTecnologia();
                }
                else
                {
                    MessageBox.Show("Para alterar um dado é necessário inserir o valor do ID", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
            }
            catch (Exception erro)
            {
                MessageBox.Show(erro.Message);
            }
        }
示例#3
0
        //BOTÃO CADASTRAR QUESTÕES TECNOLOGIA
        private void btn_TeCadastrar_Click(object sender, EventArgs e)
        {
            C_ControleQuestoesDados      cadastrarTecnologia = new C_ControleQuestoesDados();
            C_DalQuestoesDadosTecnologia dalTecnologia       = new C_DalQuestoesDadosTecnologia();

            try
            {
                if (tb_TeId.Text != "" && tb_TePergunta.Text != "" && tb_TeQuestaoA.Text != "" && tb_TeQuestaoB.Text != "" && tb_TeQuestaoC.Text != "" && tb_TeQuestaoD.Text != "" && tb_TeResposta.Text != "")
                {
                    cadastrarTecnologia.ID_Pergunta = Convert.ToInt32(tb_TeId.Text);
                    cadastrarTecnologia.Pergunta    = tb_TePergunta.Text;
                    cadastrarTecnologia.QuestaoA    = tb_TeQuestaoA.Text;
                    cadastrarTecnologia.QuestaoB    = tb_TeQuestaoB.Text;
                    cadastrarTecnologia.QuestaoC    = tb_TeQuestaoC.Text;
                    cadastrarTecnologia.QuestaoD    = tb_TeQuestaoD.Text;
                    cadastrarTecnologia.Resposta    = tb_TeResposta.Text;

                    dalTecnologia.CadastrarQuestoesCinema(cadastrarTecnologia);

                    MetodoDataGridTecnologia();
                    MessageBox.Show("Cadastro realizado com sucesso!!", "Parabéns!!!", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    ApagarTecnologia();
                }
                else
                {
                    MessageBox.Show("Existem campos vazios!Por favor preencha corretamente para o acesso.", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
            }
            catch (Exception erro)
            {
                throw new ApplicationException(erro.Message);
            }
        }
示例#4
0
        //BOTÃO ALTERAR QUESTÕES CINEMA
        private void btn_csAlterar_Click(object sender, EventArgs e)
        {
            C_ControleQuestoesDados  cadastrarCinema = new C_ControleQuestoesDados();
            C_DalQuestoesDadosCinema dalCinema       = new C_DalQuestoesDadosCinema();

            if (tb_cID.Text != "")
            {
                try
                {
                    cadastrarCinema.ID_Pergunta = Convert.ToInt32(tb_cID.Text);
                    cadastrarCinema.Pergunta    = tb_cPergunta.Text;
                    cadastrarCinema.QuestaoA    = tb_cquestaoA.Text;
                    cadastrarCinema.QuestaoB    = tb_cquestaoB.Text;
                    cadastrarCinema.QuestaoC    = tb_cquestaoC.Text;
                    cadastrarCinema.QuestaoD    = tb_cquestaoD.Text;
                    cadastrarCinema.Resposta    = tb_cresposta.Text;

                    dalCinema.EditarQuestaoCinema(cadastrarCinema);
                    MessageBox.Show("Dados alterados com sucesso");
                    MetodoDataGridCinema();

                    LimparTextBoxCinema();
                }
                catch (Exception erro)
                {
                    MessageBox.Show(erro.Message);
                }
            }
            else
            {
                MessageBox.Show("Para alterar um dado é necessário inserir o valor do ID", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
示例#5
0
        //DELETAR QUESTÕES MEDICINA
        private void btn_mDeletar_Click(object sender, EventArgs e)
        {
            C_ControleQuestoesDados cadastrarMed = new C_ControleQuestoesDados();
            C_DalQuestoesDados      dalMed       = new C_DalQuestoesDados();

            if (tb_idPergunta.Text != "")
            {
                try
                {
                    cadastrarMed.ID_Pergunta = Convert.ToInt32(tb_idPergunta.Text);

                    dalMed.DeletarQuestaoMedicina(cadastrarMed);
                    MessageBox.Show("Dados deletado com sucesso");
                    MetodoDataGridMedicina();
                    LimparTextBox();
                }
                catch (Exception erro)
                {
                    MessageBox.Show(erro.Message);
                }
            }
            else
            {
                MessageBox.Show("Para apagar um dado é necessário inserir o valor do ID", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
示例#6
0
        //CADASTRAR QUESTÕES MEDICINA
        private void btn_cadastrar_Click(object sender, EventArgs e)
        {
            C_ControleQuestoesDados cadastrarMed = new C_ControleQuestoesDados();
            C_DalQuestoesDados      dalMed       = new C_DalQuestoesDados();

            try
            {
                if (tb_idPergunta.Text != "" && tb_pergunta.Text != "" && tb_questaoA.Text != "" && tb_questaoB.Text != "" && tb_questaoC.Text != "" && tb_questaoD.Text != "" && tb_resposta.Text != "")
                {
                    cadastrarMed.ID_Pergunta = Convert.ToInt32(tb_idPergunta.Text);
                    cadastrarMed.Pergunta    = tb_pergunta.Text;
                    cadastrarMed.QuestaoA    = tb_questaoA.Text;
                    cadastrarMed.QuestaoB    = tb_questaoB.Text;
                    cadastrarMed.QuestaoC    = tb_questaoC.Text;
                    cadastrarMed.QuestaoD    = tb_questaoD.Text;
                    cadastrarMed.Resposta    = tb_resposta.Text;

                    dalMed.CadastrarQuestoesMedicina(cadastrarMed);

                    LimparTextBox();
                    MetodoDataGridMedicina();
                    MessageBox.Show("Cadastro realizado com sucesso!!", "Parabéns!!!", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                }
                else
                {
                    MessageBox.Show("Existem campos vazios!Por favor preencha corretamente para o acesso.", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
            }
            catch (Exception erro)
            {
                throw new ApplicationException(erro.Message);
            }
        }