Example #1
0
 public SongController(ILocalizationService localizationService,
                       IPictureService pictureService,
                       ICustomerService customerService,
                       IDateTimeHelper dateTimeHelper,
                       CustomerSettings customerSettings,
                       MediaSettings mediaSettings,
                       IArtistPageService artistPageService,
                       IArtistPageAPIService artistPageApiService,
                       ISongService songService,
                       IMusicService musicService,
                       mobSocialSettings mobSocialSettings,
                       IMobSocialService mobSocialService,
                       IWorkContext workContext,
                       IMobSocialMessageService mobsocialMessageService,
                       ISharedSongService sharedSongService,
                       IStoreContext storeContext,
                       IProductService productService,
                       IDownloadService downloadService,
                       IPriceFormatter priceFormatter)
 {
     _localizationService     = localizationService;
     _pictureService          = pictureService;
     _customerService         = customerService;
     _dateTimeHelper          = dateTimeHelper;
     _customerSettings        = customerSettings;
     _mediaSettings           = mediaSettings;
     _mobSocialSettings       = mobSocialSettings;
     _mobSocialService        = mobSocialService;
     _workContext             = workContext;
     _artistPageApiService    = artistPageApiService;
     _artistPageService       = artistPageService;
     _songService             = songService;
     _musicService            = musicService;
     _mobsocialMessageService = mobsocialMessageService;
     _sharedSongService       = sharedSongService;
     _storeContext            = storeContext;
     _productService          = productService;
     _downloadService         = downloadService;
     _priceFormatter          = priceFormatter;
 }
Example #2
0
 public SongController(ILocalizationService localizationService,
     IPictureService pictureService,
     ICustomerService customerService,
     IDateTimeHelper dateTimeHelper,
     CustomerSettings customerSettings,
     MediaSettings mediaSettings,
     IArtistPageService artistPageService,
     IArtistPageAPIService artistPageApiService,
     ISongService songService,
     IMusicService musicService,
     mobSocialSettings mobSocialSettings,
     IMobSocialService mobSocialService,
     IWorkContext workContext,
     IMobSocialMessageService mobsocialMessageService,
     ISharedSongService sharedSongService,
     IStoreContext storeContext,
     IProductService productService,
     IDownloadService downloadService,
     IPriceFormatter priceFormatter)
 {
     _localizationService = localizationService;
     _pictureService = pictureService;
     _customerService = customerService;
     _dateTimeHelper = dateTimeHelper;
     _customerSettings = customerSettings;
     _mediaSettings = mediaSettings;
     _mobSocialSettings = mobSocialSettings;
     _mobSocialService = mobSocialService;
     _workContext = workContext;
     _artistPageApiService = artistPageApiService;
     _artistPageService = artistPageService;
     _songService = songService;
     _musicService = musicService;
     _mobsocialMessageService = mobsocialMessageService;
     _sharedSongService = sharedSongService;
     _storeContext = storeContext;
     _productService = productService;
     _downloadService = downloadService;
     _priceFormatter = priceFormatter;
 }