Ejemplo n.º 1
0
 public Activity(Team team, String text) {
   teamId(team.teamId());
   teamName(team.teamName());
   text(text);
   createdDate(new Date());
 }
Ejemplo n.º 2
0
 public void bindTeam(Team team) {
   if (team == null) return;
   _teamId = team.teamId();
   _teamName = team.teamName();
 }