protected override void LerObjetoTela() { base.LerObjetoTela(); obj = (Pastoral)dtgDados.SelectedRows[0].DataBoundItem; edtCodigo.Text = obj.PstCodigo.ToString(); edtDescricao.Text = obj.PstDescricao; edtCodigo.Focus(); }
private int Incluir() { try { Pastoral pastoral = new Pastoral(); pastoral.PstCodigo = int.Parse(ctrl.LastID()); pastoral.PstDescricao = "Pastoral incluída"; return ctrl.Incluir(pastoral); } catch { Assert.Fail("Falha ao cadastrar a pastoral"); return -1; } }
private void AntesCadastrar(object sender) { Pastoral obj = new Pastoral(); obj.PstCodigo = int.Parse(ctrl.LastID()); vm.Objeto = obj; }
protected override void AntesAdicionar() { base.AntesAdicionar(); obj = new Pastoral(); }
private static int IncluirPastoral() { Pastoral obj = new Pastoral(); obj.PstCodigo = int.Parse(ctrlPastoral.LastID()); obj.PstDescricao = "Pastoral incluída"; return ctrlPastoral.Incluir(obj); }
public Escala() { pastoral = new Pastoral(); funcoes = new ListaFuncao(this); }
public PastoralVM() { obj = new Pastoral(); }