public ArtistPageController(IMediaService pictureService,
                             IUserService userService,
                             UserSettings customerSettings,
                             MediaSettings mediaSettings,
                             IArtistPageService artistPageService,
                             IArtistPageApiService artistPageApiService,
                             IArtistPageManagerService artistPageManagerService,
                             ISongService songService,
                             IArtistPagePaymentService artistPagePaymentService,
                             IMusicService musicService,
                             IFriendService friendService)
 {
     _pictureService           = pictureService;
     _userService              = userService;
     _customerSettings         = customerSettings;
     _mediaSettings            = mediaSettings;
     _artistPageService        = artistPageService;
     _artistPageApiService     = artistPageApiService;
     _artistPageManagerService = artistPageManagerService;
     _songService              = songService;
     _artistPagePaymentService = artistPagePaymentService;
     _musicService             = musicService;
     _friendService            = friendService;
 }
 public ArtistPageController(IMediaService pictureService,
     IUserService userService,
     UserSettings customerSettings,
     MediaSettings mediaSettings,
     IArtistPageService artistPageService,
     IArtistPageApiService artistPageApiService,
     IArtistPageManagerService artistPageManagerService,
     ISongService songService,
     IArtistPagePaymentService artistPagePaymentService, 
     IMusicService musicService, 
     IFriendService friendService)
 {
     _pictureService = pictureService;
     _userService = userService;
     _customerSettings = customerSettings;
     _mediaSettings = mediaSettings;
     _artistPageService = artistPageService;
     _artistPageApiService = artistPageApiService;
     _artistPageManagerService = artistPageManagerService;
     _songService = songService;
     _artistPagePaymentService = artistPagePaymentService;
     _musicService = musicService;
     _friendService = friendService;
 }