当前位置: 首页>>代码示例>>C#>>正文


C# DAL.DALConexao类代码示例

本文整理汇总了C#中DAL.DALConexao的典型用法代码示例。如果您正苦于以下问题:C# DALConexao类的具体用法?C# DALConexao怎么用?C# DALConexao使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DALConexao类属于DAL命名空间,在下文中一共展示了DALConexao类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: btSalvar_Click

        private void btSalvar_Click(object sender, EventArgs e)
        {
            try
            {

                ModeloSubCategoria modelo = new ModeloSubCategoria();
                modelo.SCatNome = txtSnome.Text;
                modelo.CatCod = Convert.ToInt32(cbCatCod.SelectedValue);
                DALConexao cx = new DALConexao(DadosDaConexao.srtConexao);
                BLLSubCategoria bll = new BLLSubCategoria(cx);

                if (operacao == "inserir")
                {
                    //cadastrar categoria
                    bll.Incluir(modelo);
                    Ferramentas.MessageBoxHelper.PrepToCenterMessageBoxOnForm(this);
                    MessageBox.Show("Cadastro efetuado -  Código " + modelo.SCatCod.ToString(), "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    // alterar categoria
                    modelo.SCatCod= Convert.ToInt32(txtSCatCod.Text);
                    bll.Alterar(modelo);
                    Ferramentas.MessageBoxHelper.PrepToCenterMessageBoxOnForm(this);
                    MessageBox.Show("Cadastro Alterado", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                this.LimpaTela();
                this.AlteraBotoes(1);
            }
            catch (Exception erro)
            {
                Ferramentas.MessageBoxHelper.PrepToCenterMessageBoxOnForm(this);
                MessageBox.Show(erro.Message, "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
开发者ID:mrsalustiano,项目名称:VS_C,代码行数:35,代码来源:frmCadastroSubCategoria.cs

示例2: btSalvar_Click

        // Botão Salvar
        private void btSalvar_Click(object sender, EventArgs e)
        {
           try
           {            
              // Leitura dos dados nos campos
              ModeloCategoria modelo = new ModeloCategoria();
              modelo.CatNome = txtNome.Text;

              // Objeto para conexão e gravação no banco
              DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao);
              BLLCategoria bll = new BLLCategoria(cx);

              if (this.operacao == "Inserir")
              {
                // Cadastrar uma categoria
                bll.Incluir(modelo);
                MessageBox.Show("Cadastro efetuado: Código " + modelo.CatCod.ToString());
              }
              else
              {
                // Alterar uma categoria
                modelo.CatCod = Convert.ToInt32(txtCodigo.Text);
                bll.Alterar(modelo);
                MessageBox.Show("Cadastro alterado");
              }
              this.LimpaTela();
              this.alteraBotoes(1);
           }
           catch (Exception erro)
           {
               MessageBox.Show(erro.Message);
           }
        }
开发者ID:jrrnet,项目名称:ControleDeEstoque,代码行数:34,代码来源:frmCadastroCategoria.cs

示例3: btnExcluir_Click

        private void btnExcluir_Click(object sender, EventArgs e)
        {
            try
            {
                DialogResult mensagem = MessageBox.Show("Desaja excluir o registro?", "Aviso", MessageBoxButtons.YesNo);

                if (mensagem.ToString().Equals("Yes"))
                {
                    DALConexao con = new DALConexao(DadosConexao.StringConexao);

                    BLLSubCategoria sc = new BLLSubCategoria(con);

                    sc.Excluir(Convert.ToInt32(txtCodigoSubCategoria.Text));

                    this.LimparCampos();

                    this.AlteraBotoes(1);
                }
            }
            catch
            {
                MessageBox.Show("Erro ao excluir registro");

                this.AlteraBotoes(3);
            }
        }
开发者ID:drmcarvalho,项目名称:ControleEstoque,代码行数:26,代码来源:frmCadastroSubCategoria.cs

示例4: btnSalvar_Click

 private void btnSalvar_Click(object sender, EventArgs e)
 {
     try
     {
         //Leitura dos Dados
         ModeloUnidadeDeMedida modelo = new ModeloUnidadeDeMedida();
         modelo.UmedNome = txtUnidadeMedida.Text;
         //Obj para gravar os dados no Banco
         DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao);
         BLLUnidadeDeMedida bll = new BLLUnidadeDeMedida(cx);
         if (this.operacao == "inserir")
         {  //Cadastrar uma Categoria
             bll.incluir(modelo);
             MessageBox.Show("Cadastro efetuado: Código " + modelo.UmedCod.ToString());
         }
         else
         {  //Alterar uma Categoria
             modelo.UmedCod = Convert.ToInt32(txtCod.Text);
             bll.Alterar(modelo);
             MessageBox.Show("Cadastro Alterado!");
         }
         this.LimpaTela();
         this.alterarBotoes(1);
     }
     catch (Exception erro)
     {
         MessageBox.Show(erro.Message);
     }
 }
开发者ID:eduardotecnologo,项目名称:Projetos.Net,代码行数:29,代码来源:frmCadastroUnidadeDeMedida.cs

示例5: btPesquisar_Click

        private void btPesquisar_Click(object sender, EventArgs e)
        {
            DALConexao cx = new DALConexao(DadosDaConexao.srtConexao);
            BLLSubCategoria bll = new BLLSubCategoria(cx);

            dgvDados.DataSource = bll.Localizar(txtValor.Text);
        }
开发者ID:mrsalustiano,项目名称:VS_C,代码行数:7,代码来源:frmConsultaSubCategoria.cs

示例6: frmMovimentacaoCompra_Load

        private void frmMovimentacaoCompra_Load(object sender, EventArgs e)
        {
            Ferramentas.CloseButtonDisabler.FormCloseButtonDisabler.DisableCloseButton(this.Handle.ToInt32());
            this.AlteraBotoes(1);
            //  txtNome.Focus();


            DALConexao cx = new DALConexao(DadosDaConexao.srtConexao);
            BLLFornecedor bllforn = new BLLFornecedor(cx);
           
            cbFornecedor.DataSource = bllforn.Localizar("");
            cbFornecedor.DisplayMember = "for_nome";
            cbFornecedor.ValueMember = "for_cod";
            cbFornecedor.AutoCompleteMode = AutoCompleteMode.Suggest;
            cbFornecedor.AutoCompleteSource = AutoCompleteSource.ListItems;


            BLLProduto bllprod = new BLLProduto(cx);

            cbProduto.DataSource = bllprod.Localizar("");
            cbProduto.DisplayMember = "pro_nome";
            cbProduto.ValueMember = "pro_cod";
            cbProduto.AutoCompleteMode = AutoCompleteMode.Suggest;
            cbProduto.AutoCompleteSource = AutoCompleteSource.ListItems;
            cbProduto_Leave(sender, e);

            BLLTipoDePagamento blltp = new BLLTipoDePagamento(cx);
       
            cbTipoPagamento.DataSource = blltp.Localizar("");
            cbTipoPagamento.DisplayMember = "tpa_nome";
            cbTipoPagamento.ValueMember = "tpa_cod";
            cbTipoPagamento.AutoCompleteMode = AutoCompleteMode.Suggest;
            cbTipoPagamento.AutoCompleteSource = AutoCompleteSource.ListItems;

        }
开发者ID:mrsalustiano,项目名称:VS_C,代码行数:35,代码来源:frmMovimentacaoCompra.cs

示例7: frmCadastroProduto_Load

 private void frmCadastroProduto_Load(object sender, EventArgs e)
 {
     this.alterarBotoes(1);
     //ComboBox da Categoria
     DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao);
     BLLCategoria bll = new BLLCategoria(cx);
     cbCategoria.DataSource = bll.Localizar("");
     cbCategoria.DisplayMember = "cat_nome";
     cbCategoria.ValueMember = "cat_cod";
     try
     {
         //ComboBox da Subcategoria
         BLLSubCategoria sbll = new BLLSubCategoria(cx);
         cbSubCategoria.DataSource = sbll.LocalizarPorCategoria((int)cbCategoria.SelectedValue);
         cbSubCategoria.DisplayMember = "scat_nome";
         cbSubCategoria.ValueMember = "scat_cod";
     }
     catch
     {
         MessageBox.Show("Cadastre uma Categoria");
     }
     //ComboBox da Unidade de Medidas
     BLLUnidadeDeMedida ubll = new BLLUnidadeDeMedida(cx);
     cbUnd.DataSource = ubll.Localizar("");
     cbUnd.DisplayMember = "umed_nome";
     cbUnd.ValueMember = "umed_cod";
 }
开发者ID:eduardotecnologo,项目名称:Projetos.Net,代码行数:27,代码来源:frmCadastroProduto.cs

示例8: btnPesquizar_Click

        private void btnPesquizar_Click(object sender, EventArgs e)
        {
            DALConexao cx = new DALConexao(DadosConexao.StringDeConexao);

            BBL.BLLContasPagar bll = new BBL.BLLContasPagar(cx);
            dgvDados.DataSource = bll.Localizar(txtValor.Text);
        }
开发者ID:fasouza,项目名称:smartVenda,代码行数:7,代码来源:frmConsultaContasPagar.cs

示例9: btLocalizar_Click

        private void btLocalizar_Click(object sender, EventArgs e)
        {
            frmConsultaCompra f = new frmConsultaCompra();
            f.ShowDialog();
            f.Dispose();

            if (f.codigo != 0)
            {
                DALConexao cx = new DALConexao(DadosConexao.StringDeConexao);
                BLLCompra bll = new BLLCompra(cx);
                ModeloCompra modelo = bll.CarregaModeloCompra(f.codigo);

                txtCodigo.Text = modelo.ComCod.ToString();
                txtDataCompra.Text = modelo.ComData;
                txtNota.Text = modelo.ComNfiscal.ToString();
                txtValorTotal.Text = modelo.ComTotal.ToString();
                txtNParcelas.Text = modelo.ComParcelas.ToString();
                txtStatus.Text = modelo.ComStatus.ToString();
                txtFornecedor.Text = modelo.ForCod.ToString();
                txtTipoPagamento.Text = modelo.TpaCod.ToString();

                alteraBotoes(3);
            }
            else
            {
                this.LimpaTela();
                this.alteraBotoes(1);
            }
            f.Dispose();
        }
开发者ID:fasouza,项目名称:smartVenda,代码行数:30,代码来源:frmCadastroCompra.cs

示例10: frmListaCategoria_Load

 public void frmListaCategoria_Load(object sender, EventArgs e)
 {
     DALConexao cx = new DALConexao(DadosConexao.StringDeConexao);
     BLLCategoria bll = new BLLCategoria(cx);
     cboCategoria.DataSource = bll.Localizar("");//trás todos os dados
     cboCategoria.DisplayMember = "cat_nome";// valor que aparece
     cboCategoria.ValueMember = "cat_cod";//valor que vai ser passado
 }
开发者ID:fasouza,项目名称:smartVenda,代码行数:8,代码来源:frmListaCategoriaSubCategoria.cs

示例11: frmCadastroSubCategoria_Load

 private void frmCadastroSubCategoria_Load(object sender, EventArgs e)
 {
     this.alteraBotoes(1);
     DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao);
     BLLCategoria bll = new BLLCategoria(cx);
     cbCatCod.DataSource = bll.Localizar(""); // Carrega no ComboBox os valores da Categoria
     cbCatCod.DisplayMember = "cat_nome"; 
     cbCatCod.ValueMember = "cat_cod";
 }
开发者ID:jrrnet,项目名称:ControleDeEstoque,代码行数:9,代码来源:frmCadastroSubCategoria.cs

示例12: frmContasPagar

 public frmContasPagar()
 {
     InitializeComponent();
     DALConexao cx = new DALConexao(DadosConexao.StringDeConexao);
     BLLFornecedor bll = new BLLFornecedor(cx);
     cbFornecedor.DataSource = bll.Localizar("");
     cbFornecedor.DisplayMember = "for_nome";
     cbFornecedor.ValueMember = "for_cod";
 }
开发者ID:fasouza,项目名称:smartVenda,代码行数:9,代码来源:frmContasPagar.cs

示例13: CarregaUnidadeMedida

        private void CarregaUnidadeMedida(string dados)
        {
            // Objeto conexão
            DALConexao con = new DALConexao(DadosConexao.StringConexao);

            //Objeto categoria regras e manipulação de dados
            BLLUnidadeMedida um = new BLLUnidadeMedida(con);

            dgvUnidadeMedida.DataSource = um.Localizar(dados);
        }
开发者ID:drmcarvalho,项目名称:ControleEstoque,代码行数:10,代码来源:frmConsultaUnidadeMedida.cs

示例14: CarregarCategoria

        private void CarregarCategoria(string dados)
        {
            // Objeto conexão
            DALConexao con = new DALConexao(DadosConexao.StringConexao);

            //Objeto categoria regras e manipulação de dados
            BLLCategoria c = new BLLCategoria(con);

            dgvDadosCategoria.DataSource = c.Localizar(dados);
        }
开发者ID:drmcarvalho,项目名称:ControleEstoque,代码行数:10,代码来源:frmConsultaCategoria.cs

示例15: frmCadastroSubCategoria_Load

 private void frmCadastroSubCategoria_Load(object sender, EventArgs e)
 {
     Ferramentas.CloseButtonDisabler.FormCloseButtonDisabler.DisableCloseButton(this.Handle.ToInt32());
     this.AlteraBotoes(1);
     DALConexao cx = new DALConexao(DadosDaConexao.srtConexao);
     BLLCategoria bll = new BLLCategoria(cx);
     cbCatCod.DataSource = bll.Localizar("");
     cbCatCod.DisplayMember = "cat_nome";
     cbCatCod.ValueMember = "cat_cod";
     txtSnome.Focus();
 }
开发者ID:mrsalustiano,项目名称:VS_C,代码行数:11,代码来源:frmCadastroSubCategoria.cs


注:本文中的DAL.DALConexao类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。