Example #1
0
 public Klass(string name, CCLocation location)
 {
     this.KlassName = name;
     CCLocation     = location;
     Students       = new HashSet <Student>();
 }
Example #2
0
 public Klass(CCLocation cCLocation)
 {
     Students   = new HashSet <Student>();
     CCLocation = cCLocation;
 }