Esempio n. 1
0
 public CStudent(string main, string[] st)
 {
     fIO      = new CFIO();
     Exams    = new CExams();
     IsActive = true;
     getFromstr(main, st);
 }
Esempio n. 2
0
 public CStudent()
 {
     FIO      = new CFIO();
     Group    = StringEquivalents.DefaultGroupes[sp];
     c        = 1;
     IsActive = true;
     exams    = new CExams();
 }
Esempio n. 3
0
        public CExams Clone()
        {
            CExams res = new CExams();

            for (int i = 0; i < res.cexams.Length; i++)
            {
                res.cexams[i] = this.cexams[i].Clone();
            }
            return(res);
        }