public ChartsController(IViewTopSongsBLL topSongsModel, IViewTopUsersBLL topUsersModel, IViewGenderTotalBLL gendersTotalModel, IViewUserAgesTotalBLL userAgesTotalModel, IViewActivityByHourBLL activityByHourModel, IViewAlbumArtistSongTotalVotesBLL songsTotalModel, IViewTopAlbumsBLL albumsTotalModel) { this.topSongsModel = topSongsModel; this.topUsersModel = topUsersModel; this.gendersTotalModel = gendersTotalModel; this.userAgesTotalModel = userAgesTotalModel; this.activityByHourModel = activityByHourModel; this.songsTotalModel = songsTotalModel; this.albumsTotalModel = albumsTotalModel; }
public BattlController( IBattlBLL model, IVoteBLL voteModel, IViewAlbumArtistSongTotalVotesByArtistBLL alltimeWinners, IViewPastBattlsBLL pastbattls, IViewUserTotalVotesBLL topUsers, IViewAlbumArtistSongTotalVotesBLL mostVoted) { this.model = model; this.voteModel = voteModel; this.alltimeWinners = alltimeWinners; this.pastbattls = pastbattls; this.topUsers = topUsers; this.mostVoted = mostVoted; }
public MostVotedController(IViewAlbumArtistSongTotalVotesBLL model, IViewTopAlbumsBLL modelTopAlbums) { this.model = model; this.modelTopAlbums = modelTopAlbums; }