Ejemplo n.º 1
0
 private void button4_Click(object sender, EventArgs e)
 {
     if (txtName.Text != "")
     {
         dgvClient.DataSource = ClientsDAL.Search(txtName.Text);
     }
 }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            if (txtName.Text != "")
            {
                Clients pClient = new Clients();
                pClient.Name      = txtName.Text.Trim();
                pClient.Email     = txtEmail.Text.Trim();
                pClient.Telephone = txtTelephone.Text.Trim();
                pClient.Address   = txtAddress.Text;

                int resultado = ClientsDAL.Add(pClient);
                if (resultado > 0)
                {
                    MessageBox.Show("Producto Guardado Con Exito!!", "Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    this.button3_Click(sender, e);
                }
                else
                {
                    MessageBox.Show("No se pudo guardar el Producto", "Fallo!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
            else
            {
                MessageBox.Show("Se requieren datos obligatorios", "Fallo!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }
Ejemplo n.º 3
0
        private void dgvClient_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            if (dgvClient.RowCount > 0 && dgvClient.CurrentRow != null)
            {
                int     id             = Convert.ToInt32(dgvClient.CurrentRow.Cells[0].Value);
                Clients SelectedClient = ClientsDAL.GetClient(id);

                txtName.Text        = SelectedClient.Name.ToString();
                txtEmail.Text       = SelectedClient.Email.ToString();
                txtTelephone.Text   = SelectedClient.Telephone.ToString();
                txtAddress.Text     = SelectedClient.Address.ToString();
                this.ClientSelected = SelectedClient.Id;
            }
            else
            {
                MessageBox.Show("debe de seleccionar una fila");
                this.ClientSelected = 0;
            }
        }
Ejemplo n.º 4
0
        private void button3_Click(object sender, EventArgs e)
        {
            if (this.ClientSelected != 0)
            {
                Clients pClient = new Clients();

                pClient.Name      = txtName.Text.Trim();
                pClient.Email     = txtEmail.Text.Trim();
                pClient.Telephone = txtTelephone.Text.Trim();
                pClient.Address   = (txtAddress.Text);
                pClient.Id        = ClientSelected;
                if (ClientsDAL.Delete(pClient) > 0)
                {
                    MessageBox.Show("Los datos del Cliente se eliminaron", "Datos Actualizados", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    this.button2_Click(sender, e);
                }
                else
                {
                    MessageBox.Show("No se pudo eliminar", "Error al Eliminar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
        }