Ejemplo n.º 1
0
 public ManageSocialAccountsController(ISocialAccountsService socialAccountsService,
                                       ISocialAccountModelFactory socialAccountModelFactory,
                                       ILocalizationService localizationService,
                                       ILocalizedEntityService localizedEntityService)
 {
     _socialAccountsService     = socialAccountsService;
     _socialAccountModelFactory = socialAccountModelFactory;
     _localizationService       = localizationService;
     _localizedEntityService    = localizedEntityService;
 }
Ejemplo n.º 2
0
 public EmailService(ISettingService settingService,
                     ISocialAccountsService socialAccountsService,
                     ITemplateEngine templateEngine,
                     IWorkContext workContext,
                     IEventPublisher eventPublisher)
 {
     _settingService        = settingService;
     _socialAccountsService = socialAccountsService;
     _templateEngine        = templateEngine;
     _workContext           = workContext;
     _eventPublisher        = eventPublisher;
 }