예제 #1
0
 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;
 }
예제 #2
0
 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;
 }
예제 #3
0
        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;
        }
예제 #4
0
        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;
        }
예제 #5
0
 public MostVotedController(IViewAlbumArtistSongTotalVotesBLL model, IViewTopAlbumsBLL modelTopAlbums)
 {
     this.model          = model;
     this.modelTopAlbums = modelTopAlbums;
 }
예제 #6
0
 public MostVotedController(IViewAlbumArtistSongTotalVotesBLL model, IViewTopAlbumsBLL modelTopAlbums)
 {
     this.model = model;
     this.modelTopAlbums = modelTopAlbums;
 }