public Fighter_Impl(Participant_DAO pDAO, Team_DAO team_DAO, Arena_Impl ArenaImpl) { this.pDAO = pDAO; team = team_DAO; this.ArenaImpl = ArenaImpl; }
public Fighter_Impl() { this.pDAO = new Participant_DAO(); this.team = new Team_DAO(); this.ArenaImpl = new Arena_Impl(); }