I need help, I'm trying to refactor this method to reduce its cognitive complexity sonarqube display this issue
private void PopulateBook(Book b)
{
if (b.page.num001 == null) b.page.num001 = string.Empty;
if (b.page.num002 == null) b.page.num002 = string.Empty;
if (b.page.num003 == null) b.page.num003 = string.Empty;
if (b.page.num004 == null) b.page.num004 = string.Empty;
if (b.page.num005 == null) b.page.num005 = string.Empty;
if (b.page.num006 == null) b.page.num006 = string.Empty;
if (b.page.num007 == null) b.page.num007 = string.Empty;
if (b.page.num008 == null) b.page.num008 = string.Empty;
if (b.page.num009 == null) b.page.num009 = string.Empty;
if (b.page.num010 == null) b.page.num010 = string.Empty;
if (b.page.num011 == null) b.page.num011 = string.Empty;
if (b.page.num012 == null) b.page.num012 = string.Empty;
if (b.page.num013 == null) b.page.num013 = string.Empty;
if (b.page.num014 == null) b.page.num014 = string.Empty;
if (b.page.num015 == null) b.page.num015 = string.Empty;
if (b.page.num016 == null) b.page.num016 = string.Empty;
if (b.page.num017 == null) b.page.num017 = string.Empty;
if (b.page.num018 == null) b.page.num018 = string.Empty;
if (b.page.num019 == null) b.page.num019 = string.Empty;
if (b.page.num020 == null) b.page.num020 = string.Empty;
}