예제 #1
0
 public DemoHeaderViewModelFactory(LocalizationService localizationService,
                                   IAddressBookService addressBookService,
                                   ICustomerService customerService,
                                   CartViewModelFactory cartViewModelFactory,
                                   IUrlResolver urlResolver,
                                   IMarketService marketService,
                                   ICurrentMarket currentMarket,
                                   IBookmarksService bookmarksService,
                                   ICartService cartService,
                                   CustomerContext customerContext,
                                   IContentCacheKeyCreator contentCacheKeyCreator,
                                   IContentLoader contentLoader,
                                   CmsHeaderViewModelFactory cmsHeaderViewModelFactory) :
     base(localizationService,
          addressBookService,
          customerService,
          cartViewModelFactory,
          urlResolver,
          marketService,
          currentMarket,
          bookmarksService,
          cartService,
          contentCacheKeyCreator,
          contentLoader)
 {
     _customerService           = customerService;
     _customerContext           = customerContext;
     _cmsHeaderViewModelFactory = cmsHeaderViewModelFactory;
 }
예제 #2
0
 public CommerceHeaderViewModelFactory(LocalizationService localizationService,
                                       IAddressBookService addressBookService,
                                       ICustomerService customerService,
                                       CartViewModelFactory cartViewModelFactory,
                                       IUrlResolver urlResolver,
                                       IMarketService marketService,
                                       ICurrentMarket currentMarket,
                                       IBookmarksService bookmarksService,
                                       ICartService cartService,
                                       IContentCacheKeyCreator contentCacheKeyCreator)
 {
     _localizationService    = localizationService;
     _addressBookService     = addressBookService;
     _customerService        = customerService;
     _cartViewModelFactory   = cartViewModelFactory;
     _urlResolver            = urlResolver;
     _marketService          = marketService;
     _currentMarket          = currentMarket;
     _bookmarksService       = bookmarksService;
     _cartService            = cartService;
     _contentCacheKeyCreator = contentCacheKeyCreator;
 }
 public HeaderViewModelFactory(LocalizationService localizationService,
                               ICustomerService customerService,
                               CartViewModelFactory cartViewModelFactory,
                               IUrlResolver urlResolver,
                               IBookmarksService bookmarksService,
                               ICartService cartService,
                               CustomerContext customerContext,
                               IContentCacheKeyCreator contentCacheKeyCreator,
                               IContentLoader contentLoader,
                               IDatabaseMode databaseMode,
                               ISettingsService settingsService)
 {
     _localizationService    = localizationService;
     _customerService        = customerService;
     _cartViewModelFactory   = cartViewModelFactory;
     _urlResolver            = urlResolver;
     _bookmarksService       = bookmarksService;
     _cartService            = cartService;
     _contentCacheKeyCreator = contentCacheKeyCreator;
     _contentLoader          = contentLoader;
     _databaseMode           = databaseMode;
     _customerContext        = customerContext;
     _settingsService        = settingsService;
 }
예제 #4
0
 public BookmarksController(IBookmarksService bookmarksService)
 {
     _bookmarksService = bookmarksService;
 }
예제 #5
0
 public BookmarksController(IBookmarksService bookmarks)
 {
     this.bookmarks = bookmarks;
 }
 public BookmarksController(IBookmarksService bookmarksService,
                            ICmsTrackingService trackingService)
 {
     _bookmarksService = bookmarksService;
     _trackingService  = trackingService;
 }
예제 #7
0
 public BookmarksFeature(IServiceProvider serviceProvider, ILog log, IOptionsService optionsService,
                         IBookmarksService bookmarksService, IShellSelectionService shellSelectionService) : base(serviceProvider, log, optionsService)
 {
     _bookmarksService      = bookmarksService;
     _shellSelectionService = shellSelectionService;
 }
예제 #8
0
 private ISolutionEvents GetSolutionEvents(IBookmarksService service)
 {
     return((ISolutionEvents)service);
 }
예제 #9
0
 public BookmarkController(IBookmarksService bookmarkService)
 {
     this.bookmarkService = bookmarkService;
 }
예제 #10
0
 public BookmarksController(IBookmarksService bookmarks)
 {
     this.bookmarks = bookmarks;
 }