public LanguageService(ICurrentMarket currentMarket, CookieService cookieService, IUpdateCurrentLanguage defaultUpdateCurrentLanguage, RequestContext requestContext)
 {
     _currentMarket = currentMarket;
     _cookieService = cookieService;
     _defaultUpdateCurrentLanguage = defaultUpdateCurrentLanguage;
     _requestContext = requestContext;
 }
Example #2
0
 public LanguageService(ICurrentMarket currentMarket, CookieService cookieService, IUpdateCurrentLanguage defaultUpdateCurrentLanguage, RequestContext requestContext)
 {
     _currentMarket = currentMarket;
     _cookieService = cookieService;
     _defaultUpdateCurrentLanguage = defaultUpdateCurrentLanguage;
     _requestContext = requestContext;
 }
Example #3
0
 public CurrencyService(ICurrentMarket currentMarket, CookieService cookieService)
 {
     _currentMarket = currentMarket;
     _cookieService = cookieService;
 }
Example #4
0
 public LanguageService(ICurrentMarket currentMarket, CookieService cookieService, IUpdateCurrentLanguage defaultUpdateCurrentLanguage)
 {
     _currentMarket = currentMarket;
     _cookieService = cookieService;
     _defaultUpdateCurrentLanguage = defaultUpdateCurrentLanguage;
 }
Example #5
0
 public CurrentMarket(IMarketService marketService, CookieService cookieService)
 {
     _marketService = marketService;
     _cookieService = cookieService;
 }
Example #6
0
 public CurrentMarket(IMarketService marketService, CookieService cookieService)
 {
     _marketService = marketService;
     _cookieService = cookieService;
 }
Example #7
0
 public CurrencyService(ICurrentMarket currentMarket, CookieService cookieService)
 {
     _currentMarket = currentMarket;
     _cookieService = cookieService;
 }