Exemplo n.º 1
0
        //Name can not be empty and
        public Student(string name)
        {
            this.Name = name;
            School sc = new School();

            this.StudentId = sc.IdStudentGenerator();
        }