public Student(string n, string l, string s,int a, string p, string g ) { Group tmp = new Group(); tmp.GroupStudent = g; name = n; surname = s; lastname = l; age = a; pol = p; group = tmp; }
public Student() { group = new Group(); }