function helloSyntaxHighlighter()
{
return "hi!";
}
[NonAction]
protected virtual void PrepareStoresMappingModel(LanguageModel model, Language language, bool excludeProperties)
{
if (model == null)
throw new ArgumentNullException("model");
model.AvailableStores = _storeService
.GetAllStores()
.Select(s => s.ToModel())
.ToList();
if (!excludeProperties)
{
if (language != null)
{
model.SelectedStoreIds = _storeMappingService.GetStoresIdsWithAccess(language);
}
}
}
Hello SyntaxHighlighter
Hello SyntaxHighlighter
function helloSyntaxHighlighter()
{
return "hi!";
}