示例#1
0
        private void btnEditar_Click(object sender, EventArgs e)
        {
            Tecnico tec = new Tecnico();

            tec.codigo = 1;
            tec.nome   = "Leonardo Dias de Lemos Hessel";
            tec.nasc   = new DateTime();
            tec.sexo   = "Masculino";
            tec.rg     = "446668889";
            tec.cpf    = "11122233344";
            tec.cnh    = "11122233344";
            frmTecnico frm = new frmTecnico(tec, "Edit");

            frm.ShowDialog();
        }
示例#2
0
 public frmTecnico(Tecnico tecnico, string action)
 {
     InitializeComponent();
     this.tecnico = tecnico;
     SetForm(action);
 }