コード例 #1
0
 public ArtistPageController(ILocalizationService localizationService,
                             IPictureService pictureService,
                             ICustomerService customerService,
                             IDateTimeHelper dateTimeHelper,
                             CustomerSettings customerSettings,
                             MediaSettings mediaSettings,
                             IArtistPageService artistPageService,
                             IArtistPageAPIService artistPageApiService,
                             IArtistPageManagerService artistPageManagerService,
                             IMusicService musicService,
                             mobSocialSettings mobSocialSettings,
                             IMobSocialService mobSocialService,
                             IWorkContext workContext,
                             IDownloadService downloadService,
                             IProductService productService,
                             IOrderService orderService,
                             IStoreContext storeContext,
                             TaxSettings taxSettings,
                             ISongService songService,
                             IPriceFormatter priceFormatter,
                             IArtistPagePaymentService artistPagePaymentService)
 {
     _localizationService      = localizationService;
     _pictureService           = pictureService;
     _customerService          = customerService;
     _dateTimeHelper           = dateTimeHelper;
     _customerSettings         = customerSettings;
     _mediaSettings            = mediaSettings;
     _artistPageService        = artistPageService;
     _mobSocialSettings        = mobSocialSettings;
     _mobSocialService         = mobSocialService;
     _workContext              = workContext;
     _artistPageApiService     = artistPageApiService;
     _artistPageManagerService = artistPageManagerService;
     _musicService             = musicService;
     _downloadService          = downloadService;
     _productService           = productService;
     _orderService             = orderService;
     _storeContext             = storeContext;
     _taxSettings              = taxSettings;
     _songService              = songService;
     _priceFormatter           = priceFormatter;
     _artistPagePaymentService = artistPagePaymentService;
 }
コード例 #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;
 }
コード例 #3
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;
 }