Skip to content

Commit

Permalink
Became version 1.3.0 as master version
Browse files Browse the repository at this point in the history
  • Loading branch information
iAlexeyProkhorov committed Mar 1, 2021
1 parent f3c657e commit dab86aa
Showing 1 changed file with 9 additions and 26 deletions.
35 changes: 9 additions & 26 deletions Components/PublicInfoComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,8 @@


using Microsoft.AspNetCore.Mvc;
using Nop.Core;
using Nop.Core.Caching;
using Nop.Plugin.Widgets.qBoSlider.Extensions;
using Nop.Plugin.Widgets.qBoSlider.Infrastructure.Cache;
using Nop.Plugin.Widgets.qBoSlider.Models;
using Nop.Plugin.Widgets.qBoSlider.Factories.Public;
using Nop.Plugin.Widgets.qBoSlider.Service;
using Nop.Services.Caching;
using Nop.Services.Configuration;
using Nop.Services.Customers;
using Nop.Services.Localization;
using Nop.Services.Media;
using Nop.Services.Security;
using Nop.Services.Stores;
using Nop.Web.Framework.Components;
Expand All @@ -47,23 +38,15 @@ public class PublicInfoComponent : NopViewComponent
#region Constructor

public PublicInfoComponent(IAclService aclService,
ICacheManager cacheManager,
ILocalizationService localizationService,
IPictureService pictureService,
ISettingService settingService,
ISlideService slideService,
IStoreContext storeContext,
IWorkContext workContext)
IPublicModelFactory publicModelFactory,
IStoreMappingService storeMappingService,
IWidgetZoneService widgetZoneService
)
{
this._aclService = aclService;
this._cacheManager = cacheManager;
this._localizationService = localizationService;
this._pictureService = pictureService;
this._settingService = settingService;
this._slideService = slideService;

this._storeContext = storeContext;
this._workContext = workContext;
_aclService = aclService;
_publicModelFactory = publicModelFactory;
_storeMappingService = storeMappingService;
_widgetZoneService = widgetZoneService;
}

#endregion
Expand Down

0 comments on commit dab86aa

Please sign in to comment.