Beispiel #1
0
 public Fighter_Impl(Participant_DAO pDAO, Team_DAO team_DAO, Arena_Impl ArenaImpl)
 {
     this.pDAO      = pDAO;
     team           = team_DAO;
     this.ArenaImpl = ArenaImpl;
 }
Beispiel #2
0
 public Fighter_Impl()
 {
     this.pDAO      = new Participant_DAO();
     this.team      = new Team_DAO();
     this.ArenaImpl = new Arena_Impl();
 }