Try your search with a different keyword or use * as a wildcard.
@model RewardPointsSettingsModel
@{
//page title
ViewBag.PageTitle = T("Admin.Configuration.Settings.RewardPoints").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("Reward points");
}
@{
const string hideCommonBlockAttributeName = "RewardPointsSettingsPage.HideCommonBlock";
var customer = await workContext.GetCurrentCustomerAsync();
var hideCommonBlock = await genericAttributeService.GetAttributeAsync(customer, hideCommonBlockAttributeName);
const string hideEarningRewardPointsBlockAttributeName = "RewardPointsSettingsPage.HideEarningRewardPointsBlock";
var hideEarningRewardPointsBlock = await genericAttributeService.GetAttributeAsync(customer, hideEarningRewardPointsBlockAttributeName);
}