protected override void excluirRegistro(int Id) { base.excluirRegistro(Id); rotaBLL = new RotaBLL(); if (Convert.ToInt32(dgvDados[0, dgvDados.CurrentRow.Index].Value) > 0) { Rota rota = rotaBLL.Localizar(Convert.ToInt32(dgvDados[0, dgvDados.CurrentRow.Index].Value)); if (MessageBox.Show("Deseja realmente excluir o registro : " + rota.cliente.nome_fantasia + " - " + rota.cidade.cNome, Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { rotaBLL.ExcluirRota(rota); } } }
protected override void LoadToControls() { if (Id != null) { rotaBLL = new RotaBLL(); Rota rota = rotaBLL.Localizar(Id); if (rota != null) { txtId.Text = rota.id.ToString(); cbTransportadora.SelectedValue = rota.cliente.Id; cbUF.Text = rota.cidade.cUF; SetupCidade(rota.cidade.cUF); cbCidade.SelectedValue = rota.cidade.Id; } } }