init commint
This commit is contained in:
12
Intervention.java
Normal file
12
Intervention.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package Monpack2;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Intervention {
|
||||
private ArrayList<Personnel> participants = new ArrayList<>();
|
||||
public void ajouterParticipant(Personnel p) {
|
||||
participants.add(p);
|
||||
}
|
||||
public ArrayList<Personnel> getParticipants() {
|
||||
return participants;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user