|
|
@@ -63,7 +63,7 @@ namespace economy.Controllers
|
|
|
DaysModel anniversary = new DaysModel(_dataGoKR);
|
|
|
Anniversary.Response itemList = await anniversary.GetAnniversary(request);
|
|
|
|
|
|
- if (itemList is not null)
|
|
|
+ if (itemList.Body is not null)
|
|
|
{
|
|
|
itemList.Body.Items.ItemList = itemList.Body.Items.ItemList.Select((row, index) =>
|
|
|
{
|
|
|
@@ -95,7 +95,7 @@ namespace economy.Controllers
|
|
|
DaysModel seasonal = new DaysModel(_dataGoKR);
|
|
|
Seasonal.Response itemList = await seasonal.GetSeasonal(request);
|
|
|
|
|
|
- if (itemList is not null)
|
|
|
+ if (itemList.Body is not null)
|
|
|
{
|
|
|
itemList.Body.Items.ItemList = itemList.Body.Items.ItemList.Select((row, index) =>
|
|
|
{
|
|
|
@@ -128,7 +128,7 @@ namespace economy.Controllers
|
|
|
DaysModel sundry = new DaysModel(_dataGoKR);
|
|
|
Sundry.Response itemList = await sundry.GetSundry(request);
|
|
|
|
|
|
- if (itemList is not null)
|
|
|
+ if (itemList.Body is not null)
|
|
|
{
|
|
|
itemList.Body.Items.ItemList = itemList.Body.Items.ItemList.Select((row, index) =>
|
|
|
{
|