Beispiel #1
0
 public SitemapGenerator(IStoreContext storeContext,
                         ICategoryService categoryService,
                         IProductService productService,
                         IManufacturerService manufacturerService,
                         ITopicService topicService,
                         CommonSettings commonSettings,
                         IEventPageService eventPageService,
                         ICustomerService customerService,
                         IBusinessPageService businessPageService,
                         BlogSettings blogSettings,
                         NewsSettings newsSettings,
                         ForumSettings forumSettings,
                         SecuritySettings securitySettings) :
     base(storeContext,
          categoryService,
          productService,
          manufacturerService,
          topicService,
          commonSettings,
          blogSettings,
          newsSettings,
          forumSettings,
          securitySettings)
 {
     _customerService     = customerService;
     _businessPageService = businessPageService;
     _eventPageService    = eventPageService;
 }
Beispiel #2
0
 public ManageEventPageController(IPermissionService permissionService,
                                  IEventPageService eventPageService,
                                  IWorkContext workContext,
                                  IUrlRecordService urlRecordService,
                                  ILocalizationService localizationService,
                                  ICustomerActivityService customerActivityService,
                                  IPictureService pictureService,
                                  IEventPageHotelService eventPageHotelService)
 {
     _permissionService       = permissionService;
     _eventPageService        = eventPageService;
     _workContext             = workContext;
     _urlRecordService        = urlRecordService;
     _localizationService     = localizationService;
     _customerActivityService = customerActivityService;
     _pictureService          = pictureService;
     _eventPageHotelService   = eventPageHotelService;
 }
 public EventPageController(IForumService forumService, ILocalizationService localizationService,
                            IPictureService pictureService, ICountryService countryService,
                            ICustomerService customerService, IDateTimeHelper dateTimeHelper,
                            ForumSettings forumSettings, CustomerSettings customerSettings,
                            MediaSettings mediaSettings, IEventPageService eventPageService,
                            mobSocialSettings mobSocialSettings, IEventPageAttendanceService eventPageAttendanceService,
                            IMobSocialService mobSocialService, IWorkContext workContext)
 {
     _forumService               = forumService;
     _localizationService        = localizationService;
     _pictureService             = pictureService;
     _countryService             = countryService;
     _customerService            = customerService;
     _dateTimeHelper             = dateTimeHelper;
     _forumSettings              = forumSettings;
     _customerSettings           = customerSettings;
     _mediaSettings              = mediaSettings;
     _eventPageService           = eventPageService;
     _eventPageAttendanceService = eventPageAttendanceService;
     _mobSocialSettings          = mobSocialSettings;
     _mobSocialService           = mobSocialService;
     _workContext = workContext;
 }
 public EventPageController(IForumService forumService, ILocalizationService localizationService,
     IPictureService pictureService, ICountryService countryService,
     ICustomerService customerService, IDateTimeHelper dateTimeHelper,
     ForumSettings forumSettings, CustomerSettings customerSettings,
     MediaSettings mediaSettings, IEventPageService eventPageService,
     mobSocialSettings mobSocialSettings, IEventPageAttendanceService eventPageAttendanceService,
     IMobSocialService mobSocialService, IWorkContext workContext)
 {
     _forumService = forumService;
     _localizationService = localizationService;
     _pictureService = pictureService;
     _countryService = countryService;
     _customerService = customerService;
     _dateTimeHelper = dateTimeHelper;
     _forumSettings = forumSettings;
     _customerSettings = customerSettings;
     _mediaSettings = mediaSettings;
     _eventPageService = eventPageService;
     _eventPageAttendanceService = eventPageAttendanceService;
     _mobSocialSettings = mobSocialSettings;
     _mobSocialService = mobSocialService;
     _workContext = workContext;
 }
Beispiel #5
0
 public IndexModel(IEventPageService eventPageService)
 {
     this._eventPageService = eventPageService ?? throw new ArgumentNullException(nameof(eventPageService));
 }
 public EventController(IEventPageService eventPageService, ICommentPageService commentPageService)
 {
     this._eventPageService   = eventPageService ?? throw new ArgumentNullException(nameof(eventPageService));
     this._commentPageService = commentPageService ?? throw new ArgumentNullException(nameof(commentPageService));
     ;
 }
Beispiel #7
0
 public HomeController(IEventPageService eventPageService)
 {
     this._eventPageService = eventPageService;
 }
 public ViewDetailsModel(IEventPageService eventPageService)
 {
     this._eventPageService = eventPageService;
 }