public bool Equals(StudentGroup other)
 {
     return(null != other && this.id == other.id);
 }
 public StudentGroup(StudentGroup other)
 {
     this.id         = other.id;
     this.memberList = new List <Student>(other.memberList);
     this.max        = other.max;
 }