List<JizzSong> songs = jizzSongServices.getSongsForBroadcast(dj,
broadcast);
List<HomeResultSong> resultSongs = new ArrayList<HomeResultSong>(
songs.size());
for (JizzSong song : songs) {
HomeResultSong resultSong = new HomeResultSong();
resultSong.setArtist(song.getArtist());
resultSong.setTitle(song.getTitle());
resultSongs.add(resultSong);
}
result.setSubmittedSongs(resultSongs);
// How many songs can this DJ submit?