Beispiel #1
0
        public void AlterarPatioBLL(PatioDTO dto)
        {
            try
            {
                bd = new AcessoBancoDados();
                bd.Conectar();
                string comando = "UPDATE tb_Patio SET localizacao='" + dto.localizacao + "',capacidade='" + dto.capacidade + "' Where cod_patio=" + dto.cod_patio + "  ";
                bd.ExecutarComandoSQL(comando);
            }
            catch (Exception ex)
            {
                throw new Exception("Erro ao Tentar Alterar Dado de Cliente.Detalhes:" + ex.Message);
            }

            finally
            {
                bd = null;
            }
        }
Beispiel #2
0
        public void ExcluirPatioBLL(PatioDTO dto)
        {
            try
            {
                bd = new AcessoBancoDados();
                bd.Conectar();
                string comando = "DELETE FROM tb_Patio  WHERE cod_patio=" + dto.cod_patio + "  ";
                bd.ExecutarComandoSQL(comando);
            }
            catch (Exception ex)
            {
                throw new Exception("Erro ao Tentar Excluir  Dado do Pátio.Detalhes:" + ex.Message);
            }

            finally
            {
                bd = null;
            }
        }
Beispiel #3
0
        public void InserirPatioBLL(PatioDTO dto)
        {
            try
            {
                bd = new AcessoBancoDados();
                bd.Conectar();
                string comando = "INSERT INTO tb_Patio(localizacao,capacidade) VALUES('" + dto.localizacao + "','" + dto.capacidade + "')";
                bd.ExecutarComandoSQL(comando);
            }
            catch (Exception ex)
            {
                //throw new Exception("Erro ao Inserir Paciente. Detalhe:"+ ex.Message);
                MessageBox.Show("Erro ao Inserir Novo Patio.Detalhe:" + ex.Message);
            }

            finally
            {
                bd = null;
            }
        }