private void BtnEditar_Click(object sender, EventArgs e) { if (txtID.Text != "-1") { CAMADAS.MODEL.Motorista motorista = new CAMADAS.MODEL.Motorista(); motorista.id = Convert.ToInt32(txtID.Text); motorista.nome = txtNome.Text; motorista.telefone = txtTelefone.Text; motorista.salario = Convert.ToSingle(txtSalario.Text); motorista.validadeCnh = Convert.ToDateTime(txtValidadeCnh.Text); CAMADAS.BLL.Motorista bllMotorista = new CAMADAS.BLL.Motorista(); bllMotorista.Update(motorista); limparcontrole(); DGMotorista.DataSource = ""; DGMotorista.DataSource = bllMotorista.Select(); } else { MessageBox.Show("Nenhum Motorista Selecionado para Edição", "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void BtnInserir_Click(object sender, EventArgs e) { if (txtNome.Text != "" && txtSalario.Text != "" && txtTelefone.Text != "" && txtValidadeCnh.Text != "") { CAMADAS.BLL.Motorista bllmotorista = new CAMADAS.BLL.Motorista(); CAMADAS.MODEL.Motorista motorista = new CAMADAS.MODEL.Motorista(); motorista.nome = txtNome.Text; motorista.telefone = txtTelefone.Text; motorista.salario = Convert.ToSingle(txtSalario.Text); motorista.validadeCnh = Convert.ToDateTime(txtValidadeCnh.Text); bllmotorista.Insert(motorista); limparcontrole(); DGMotorista.DataSource = ""; DGMotorista.DataSource = bllmotorista.Select(); } else { MessageBox.Show("TODOS OS ITENS DEVEM SER PREENCHIDOS!", "ERRO", MessageBoxButtons.OK, MessageBoxIcon.Error); } }