Esempio n. 1
0
 public SponsorApiController(IWorkContext workContext,
                             ISponsorService sponsorService,
                             ISponsorPassService sponsorPassService,
                             IOrderService orderService,
                             IVideoBattleService videoBattleService,
                             ICustomerService customerService,
                             IPictureService pictureService,
                             IPriceFormatter priceFormatter,
                             IDateTimeHelper dateTimeHelper,
                             ILocalizationService localizationService,
                             ICurrencyService currencyService,
                             MediaSettings mediaSettings, IMobSocialMessageService mobSocialMessageService, IStoreContext storeContext, IVideoBattlePrizeService videoBattlePrizeService, IPaymentProcessingService paymentProcessingService)
 {
     _workContext              = workContext;
     _sponsorPassService       = sponsorPassService;
     _sponsorService           = sponsorService;
     _orderService             = orderService;
     _videoBattleService       = videoBattleService;
     _customerService          = customerService;
     _pictureService           = pictureService;
     _priceFormatter           = priceFormatter;
     _dateTimeHelper           = dateTimeHelper;
     _localizationService      = localizationService;
     _currencyService          = currencyService;
     _mediaSettings            = mediaSettings;
     _mobSocialMessageService  = mobSocialMessageService;
     _storeContext             = storeContext;
     _videoBattlePrizeService  = videoBattlePrizeService;
     _paymentProcessingService = paymentProcessingService;
 }
 public VideoBattleService(ISettingService settingService, IWebHelper webHelper,
                           ILogger logger,
                           IMobRepository <VideoBattle> videoBattleRepository,
                           IMobRepository <VideoBattlePicture> videoBattlePictureRepository,
                           IMobRepository <VideoBattleParticipant> videoBattleParticpantRepository,
                           IMobRepository <VideoBattleGenre> videoBattleGenreRepository,
                           IMobRepository <VideoBattleVideo> videoBattleVideoRepository,
                           IUrlRecordService urlRecordService,
                           IWorkContext workContext,
                           IPictureService pictureService,
                           ICustomerFollowService customerFollowService,
                           IMobSocialMessageService mobSocialMessageService,
                           ICustomerService customerService,
                           IStoreContext stoerContext,
                           ITimelineAutoPublisher timelineAutoPublisher)
     : base(videoBattleRepository, videoBattlePictureRepository, pictureService, workContext, urlRecordService)
 {
     _workContext                      = workContext;
     _customerFollowService            = customerFollowService;
     _mobSocialMessageService          = mobSocialMessageService;
     _customerService                  = customerService;
     _storeContext                     = stoerContext;
     _timelineAutoPublisher            = timelineAutoPublisher;
     _videoBattleRepository            = videoBattleRepository;
     _videoBattleParticipantRepository = videoBattleParticpantRepository;
     _videoBattleGenreRepository       = videoBattleGenreRepository;
     _videoBattleVideoRepository       = videoBattleVideoRepository;
 }
Esempio n. 3
0
        /// <summary>
        /// Ctor
        /// </summary>
        public MobSocialService(IProductService productService, IMobRepository <GroupPage> groupPageRepository,
                                IMobRepository <GroupPageMember> groupPageMemberRepository, IMobRepository <CustomerFriend> customerFriendRepository,
                                IMobRepository <TeamPage> teamPageRepository, IMobRepository <CustomerAlbum> customerAlbumRepository, ICacheManager cacheManager, IWorkContext workContext,
                                IWorkflowMessageService workflowMessageService, ICustomerService customerService,
                                IOrderService orderService, ILocalizationService localizationService, MessageTemplatesSettings messageTemplateSettings,
                                INotificationService notificationService, CatalogSettings catalogSettings, IProductAttributeParser productAttributeParser,
                                IMobSocialMessageService mobSocialMessageService, IStoreContext storeContext)
        {
            this._groupPageRepository  = groupPageRepository;
            _groupPageMemberRepository = groupPageMemberRepository;
            _customerFriendRepository  = customerFriendRepository;
            _teamPageRepository        = teamPageRepository;
            _customerAlbumRepository   = customerAlbumRepository;


            _cacheManager            = cacheManager;
            _workContext             = workContext;
            _workflowMessageService  = workflowMessageService;
            _customerService         = customerService;
            _mobSocialMessageService = mobSocialMessageService;
            _productService          = productService;
            _storeContext            = storeContext;
            _orderService            = orderService;
            _localizationService     = localizationService;
            _messageTemplateSettings = messageTemplateSettings;
            _catalogSettings         = catalogSettings;
            _productAttributeParser  = productAttributeParser;
            _notificationService     = notificationService;
        }
Esempio n. 4
0
 public EventPageAttendanceService(IMobRepository <EventPageAttendance> entityRepository,
                                   IUrlRecordService urlRecordService, ICustomerService customerService,
                                   IMobSocialMessageService messageService, IWorkContext workContext,
                                   IMobRepository <CustomerFriend> customerFriendRepository) : base(entityRepository)
 {
     _cutomerService           = customerService;
     _messageService           = messageService;
     _customerFriendRepository = customerFriendRepository;
     _workContext = workContext;
 }
Esempio n. 5
0
 public ReminderNotificationsTask(IPluginFinder pluginFinder, IMobSocialMessageService mobSocialMessageService, IVideoBattleService videoBattleService, IVideoBattleVideoService videoBattleVideoService, IVideoBattleVoteService videoBattleVoteService, mobSocialSettings mobSocialSettings, IVideoBattleParticipantService videoBattleParticipantService, ICustomerService customerService, IWorkContext workContext, IStoreContext storeContext, ICustomerFollowService customerFollowService, IDateTimeHelper dateTimeHelper)
 {
     _pluginFinder                  = pluginFinder;
     _mobSocialMessageService       = mobSocialMessageService;
     _videoBattleService            = videoBattleService;
     _videoBattleVideoService       = videoBattleVideoService;
     _videoBattleVoteService        = videoBattleVoteService;
     _mobSocialSettings             = mobSocialSettings;
     _videoBattleParticipantService = videoBattleParticipantService;
     _customerService               = customerService;
     _workContext           = workContext;
     _storeContext          = storeContext;
     _customerFollowService = customerFollowService;
     _dateTimeHelper        = dateTimeHelper;
 }
Esempio n. 6
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;
 }
Esempio n. 7
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;
 }