Пример #1
0
        protected override void UpdateDisplay()
        {
            base.UpdateDisplay();
            InternationalStudent studentCopy = (InternationalStudent)_student;

            country.Text = studentCopy.Country;
            ielts.Text   = Convert.ToString(studentCopy.ItelsScore);
        }
Пример #2
0
        protected override void PushData()
        {
            base.PushData();

            InternationalStudent studentCopy = (InternationalStudent)_student;

            studentCopy.Country    = country.Text;
            studentCopy.ItelsScore = Convert.ToSingle(ielts.Text);
        }