예제 #1
0
 public Student(String name, String lastName, int age)
 {
     quantity           += 1;
     this.id             = quantity;
     this.name           = name;
     this.lastName       = lastName;
     this.age            = age;
     this.stageEvolution = StageEvolution.None;
 }
예제 #2
0
 public void SetStageEvolution(StageEvolution stageEvolution)
 {
     this.stageEvolution = stageEvolution;
 }