Exemple #1
0
        private void ConsultarAto()
        {
            var testamento = (CadTestamento)dataGridConsultarAtos.SelectedItem;

            var digitarTestamento = new DigitarTestamento(testamento, _usuario, false);
            digitarTestamento.Owner = this;
            digitarTestamento.ShowDialog();

            dataGridConsultarAtos.SelectedItem = testamento;
            dataGridConsultarAtos.Items.Refresh();

            CarregarGridParticipante();
        }
Exemple #2
0
        public DadosRevogados(DigitarTestamento digitarTestamento)
        {
            _digitarTestamento = digitarTestamento;

            InitializeComponent();
        }
Exemple #3
0
 public Testemunhas(DigitarTestamento digitarTestamento)
 {
     _digitarTestamento = digitarTestamento;
     InitializeComponent();
 }