コード例 #1
0
ファイル: frmStudentUpdate.cs プロジェクト: cr1sti4n/appDemo
        public void cargaDatos(int id)
        {
            logic = new GeneralLogic();
            var datos = logic.GetStudent(id);

            txtName.Text            = datos.name;
            txtLastname.Text        = datos.lastname;
            txtPhone.Text           = datos.phone;
            cboStatus.SelectedValue = datos.status;
            txtId.Text = id.ToString();
        }