Esempio n. 1
0
 private void frmFuncionario_Load(object sender, EventArgs e)
 {
     Camadas.BLL.Funcionario bllFuncionario = new Camadas.BLL.Funcionario();
     dgvFuncionario.DataSource = bllFuncionario.Select();
     Habilitar(false);
     pnlPesquisa.Visible = false;
 }
Esempio n. 2
0
        private void btnFiltrar_Click(object sender, EventArgs e)
        {
            if (txtPesquisa.Text != string.Empty)
            {
                Camadas.BLL.Funcionario          bllFuncionario = new Camadas.BLL.Funcionario();
                List <Camadas.Model.Funcionario> lstFuncionario = new List <Camadas.Model.Funcionario>();

                if (rdbCodigo.Checked)
                {
                    lstFuncionario = bllFuncionario.SelectById(Convert.ToInt32(txtPesquisa.Text));
                }
                else if (rdbNome.Checked)
                {
                    lstFuncionario = bllFuncionario.SelectByNome(txtPesquisa.Text);
                }

                dgvFuncionario.DataSource = "";
                dgvFuncionario.DataSource = lstFuncionario;
            }
            else
            {
                string msg = "Campo Pesquisa esta vazio...";
                MessageBox.Show(msg, "Pesquisa", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
Esempio n. 3
0
        private void btnRemover_Click(object sender, EventArgs e)
        {
            string msg;

            if (lblId.Text != string.Empty)
            {
                msg = "Confirma Remoção do Funcionario " + txtNome.Text + "?";
                DialogResult resp;
                resp = MessageBox.Show(msg, "Remover", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);
                if (resp == DialogResult.Yes)
                {
                    int id = Convert.ToInt32(lblId.Text);
                    Camadas.BLL.Funcionario   bllFuncionario = new Camadas.BLL.Funcionario();
                    Camadas.Model.Funcionario funcionario    = new Camadas.Model.Funcionario();
                    funcionario.Id = id;
                    bllFuncionario.Delete(funcionario);
                    dgvFuncionario.DataSource = "";
                    dgvFuncionario.DataSource = bllFuncionario.Select();
                }
                else
                {
                    msg = "Não há registro para remoção...";
                    MessageBox.Show(msg, "Remover", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                limparCampos();
                Habilitar(false);
            }
        }
Esempio n. 4
0
 private void rdbTodos_CheckedChange(object sender, EventArgs e)
 {
     lblPesquisa.Visible = false;
     txtPesquisa.Visible = false;
     Camadas.BLL.Funcionario bllFuncionario = new Camadas.BLL.Funcionario();
     dgvFuncionario.DataSource = "";
     dgvFuncionario.DataSource = bllFuncionario.Select();
 }
Esempio n. 5
0
        private void btnGrvar_Click(object sender, EventArgs e)
        {
            Camadas.BLL.Funcionario   bllFuncionario = new Camadas.BLL.Funcionario();
            Camadas.Model.Funcionario funcionario    = new Camadas.Model.Funcionario();
            int id = Convert.ToInt32(lblId.Text);

            string msg = "";

            if (id == -1)
            {
                msg = "Confirma Inclusão dos Dados?";
            }
            else
            {
                msg = "Confirma Atualização dos Dados?";
            }

            DialogResult resp;

            resp = MessageBox.Show(msg, "Gravar", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1);
            if (resp == DialogResult.Yes)
            {
                funcionario.Id       = id;
                funcionario.Nome     = txtNome.Text;
                funcionario.CPF      = txtCpf.Text;
                funcionario.RG       = txtRg.Text;
                funcionario.Endereco = txtEndereco.Text;
                funcionario.Bairro   = txtBairro.Text;
                funcionario.Cidade   = txtCidade.Text;
                funcionario.UF       = txtUf.Text.ToUpper();
                funcionario.Telefone = txtTelefone.Text;
                funcionario.Celular  = txtCelular.Text;
                funcionario.Sexo     = txtSexo.Text;
                funcionario.Email    = txtEmail.Text;
                if (id == -1)
                {
                    bllFuncionario.Insert(funcionario);
                }
                else
                {
                    bllFuncionario.Update(funcionario);
                }
            }
            dgvFuncionario.DataSource = "";
            dgvFuncionario.DataSource = bllFuncionario.Select();
            limparCampos();
            Habilitar(false);
        }
Esempio n. 6
0
        private void frmVenda_Load(object sender, EventArgs e)
        {
            HabilitarControlesVenda(false);
            HabilitarControlesItemVenda(false);
            LimparControlesVenda();
            LimparControlesItemVenda();

            Camadas.BLL.Venda     bllVenda     = new Camadas.BLL.Venda();
            Camadas.BLL.ItemVenda bllItemVenda = new Camadas.BLL.ItemVenda();

            dgvVenda.DataSource     = bllVenda.Select();
            dgvItemVenda.DataSource = bllItemVenda.Select();

            //combox
            //cliente
            Camadas.BLL.Cliente bllCliente = new Camadas.BLL.Cliente();
            cmbCliente.DisplayMember = "nome";
            cmbCliente.ValueMember   = "id";
            cmbCliente.DataSource    = bllCliente.Select();

            //funcionario
            Camadas.BLL.Funcionario bllFuncionario = new Camadas.BLL.Funcionario();
            cmbFuncionario.DisplayMember = "nome";
            cmbFuncionario.ValueMember   = "id";
            cmbFuncionario.DataSource    = bllFuncionario.Select();

            //venda
            Camadas.BLL.Venda bllVendas = new Camadas.BLL.Venda();
            cmbVenda.DisplayMember = "id";
            cmbVenda.DataSource    = bllVendas.Select();

            //produto
            Camadas.BLL.Produto bllProduto = new Camadas.BLL.Produto();
            cmbProduto.DisplayMember = "nome";
            cmbProduto.ValueMember   = "id";
            cmbProduto.DataSource    = bllProduto.Select();

            txtIdCliente.Text     = cmbCliente.SelectedValue.ToString();
            txtIdFuncionario.Text = cmbFuncionario.SelectedValue.ToString();
        }