Exemple #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;
 }
Exemple #2
0
 public AutoCompleteController(IUserService userService, IMediaService mediaService, MediaSettings mediaSettings, ISkillService skillService, IBusinessPageService businessPageService)
 {
     _userService         = userService;
     _mediaService        = mediaService;
     _mediaSettings       = mediaSettings;
     _skillService        = skillService;
     _businessPageService = businessPageService;
 }
 public BusinessPageController(IUserService userService, MediaSettings mediaSettings, IBusinessPageService businessPageService,
                               IEventPageAttendanceService eventPageAttendanceService, IMediaService mediaService, ICountryService countryService, IStateService stateService)
 {
     _userService                = userService;
     _mediaSettings              = mediaSettings;
     _businessPageService        = businessPageService;
     _eventPageAttendanceService = eventPageAttendanceService;
     _mediaService               = mediaService;
     _countryService             = countryService;
     _stateService               = stateService;
 }
Exemple #4
0
 public BusinessPageController(IForumService forumService, ILocalizationService localizationService,
                               IPictureService pictureService, ICountryService countryService,
                               ICustomerService customerService, IDateTimeHelper dateTimeHelper,
                               ForumSettings forumSettings, CustomerSettings customerSettings,
                               MediaSettings mediaSettings, IBusinessPageService businessPageService,
                               mobSocialSettings mobSocialSettings, IEventPageAttendanceService eventPageAttendanceService,
                               IMobSocialService mobSocialService, IWorkContext workContext, IStateProvinceService stateProvinceService)
 {
     _localizationService        = localizationService;
     _pictureService             = pictureService;
     _countryService             = countryService;
     _customerService            = customerService;
     _dateTimeHelper             = dateTimeHelper;
     _forumSettings              = forumSettings;
     _customerSettings           = customerSettings;
     _mediaSettings              = mediaSettings;
     _businessPageService        = businessPageService;
     _eventPageAttendanceService = eventPageAttendanceService;
     _mobSocialSettings          = mobSocialSettings;
     _mobSocialService           = mobSocialService;
     _workContext          = workContext;
     _stateProvinceService = stateProvinceService;
 }
 public BusinessPageApiController(IForumService forumService, ILocalizationService localizationService,
     IPictureService pictureService, ICountryService countryService,
     ICustomerService customerService, IDateTimeHelper dateTimeHelper,
     ForumSettings forumSettings, CustomerSettings customerSettings,
     MediaSettings mediaSettings, IBusinessPageService businessPageService,
     mobSocialSettings mobSocialSettings, IEventPageAttendanceService eventPageAttendanceService,
     IMobSocialService mobSocialService, IWorkContext workContext, IStateProvinceService stateProvinceService)
 {
     _localizationService = localizationService;
     _pictureService = pictureService;
     _countryService = countryService;
     _customerService = customerService;
     _dateTimeHelper = dateTimeHelper;
     _forumSettings = forumSettings;
     _customerSettings = customerSettings;
     _mediaSettings = mediaSettings;
     _businessPageService = businessPageService;
     _eventPageAttendanceService = eventPageAttendanceService;
     _mobSocialSettings = mobSocialSettings;
     _mobSocialService = mobSocialService;
     _workContext = workContext;
     _stateProvinceService = stateProvinceService;
 }