Ejemplo n.º 1
0
        private void verDatosToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (SelectedPatientBE == null)
            {
                return;
            }


            using (FrmABMPatient frm = new FrmABMPatient(Fwk.Bases.EntityUpdateEnum.UPDATED))
            {
                frm.Patient = SelectedPatientBE;
                frm.Refresh();
                if (frm.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                {
                }
            }
        }
Ejemplo n.º 2
0
        private void verDatosToolStripMenuItem_Click(object sender, EventArgs e)
        {

            if (SelectedPatientBE == null) return;
            
            
                using (FrmABMPatient frm = new FrmABMPatient(Fwk.Bases.EntityUpdateEnum.UPDATED))
                {
                    frm.Patient = SelectedPatientBE;
                    frm.Refresh();
                    if (frm.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                    {

                    }
                }
            
            

        }