Great AppCaches renaming

This commit is contained in:
Stephan
2019-01-17 11:01:23 +01:00
parent 67e4703821
commit 0bee01e0ee
108 changed files with 1538 additions and 1440 deletions

View File

@@ -21,7 +21,7 @@ namespace Umbraco.Web.Dictionary
public class DefaultCultureDictionary : Core.Dictionary.ICultureDictionary
{
private readonly ILocalizationService _localizationService;
private readonly ICacheProvider _requestCacheProvider;
private readonly IAppCache _requestCacheProvider;
private readonly CultureInfo _specificCulture;
public DefaultCultureDictionary()
@@ -30,7 +30,7 @@ namespace Umbraco.Web.Dictionary
}
public DefaultCultureDictionary(ILocalizationService localizationService, ICacheProvider requestCacheProvider)
public DefaultCultureDictionary(ILocalizationService localizationService, IAppCache requestCacheProvider)
{
_localizationService = localizationService ?? throw new ArgumentNullException(nameof(localizationService));
_requestCacheProvider = requestCacheProvider ?? throw new ArgumentNullException(nameof(requestCacheProvider));
@@ -42,7 +42,7 @@ namespace Umbraco.Web.Dictionary
_specificCulture = specificCulture ?? throw new ArgumentNullException(nameof(specificCulture));
}
public DefaultCultureDictionary(CultureInfo specificCulture, ILocalizationService localizationService, ICacheProvider requestCacheProvider)
public DefaultCultureDictionary(CultureInfo specificCulture, ILocalizationService localizationService, IAppCache requestCacheProvider)
{
_localizationService = localizationService ?? throw new ArgumentNullException(nameof(localizationService));
_requestCacheProvider = requestCacheProvider ?? throw new ArgumentNullException(nameof(requestCacheProvider));