public PrivacyController(IConsentAgreementService consentAgreementService, ICurrentCookieLevelProvider cookieLevelProvider,
                          ICurrentUserContactProvider currentContactProvider, IWebFarmService webFarmService, ISiteService siteService)
 {
     mConsentAgreementService = consentAgreementService;
     mCookieLevelProvider     = cookieLevelProvider;
     mCurrentContactProvider  = currentContactProvider;
     mWebFarmService          = webFarmService;
     mSiteService             = siteService;
 }
Exemplo n.º 2
0
 public PrivacyController(IConsentAgreementService consentAgreementService, ICurrentCookieLevelProvider cookieLevelProvider,
                          ICurrentUserContactProvider currentContactProvider, IWebFarmService webFarmService, ISiteService siteService, IConsentInfoProvider consentInfoProvider,
                          ITaskInfoProvider taskInfoProvider)
 {
     this.consentAgreementService = consentAgreementService;
     this.cookieLevelProvider     = cookieLevelProvider;
     this.currentContactProvider  = currentContactProvider;
     this.webFarmService          = webFarmService;
     this.siteService             = siteService;
     this.consentInfoProvider     = consentInfoProvider;
     this.taskInfoProvider        = taskInfoProvider;
 }
Exemplo n.º 3
0
 public GeneratorController(ISiteService siteService, IWebFarmService webFarmService)
 {
     this.siteService    = siteService;
     this.webFarmService = webFarmService;
 }