diff --git a/CustomerOnlineV2/CustomerOnlineV2.Repository/ConnectionHelper/ConnectionHelper.cs b/CustomerOnlineV2/CustomerOnlineV2.Repository/ConnectionHelper/ConnectionHelper.cs index b38b36b..3913c8c 100644 --- a/CustomerOnlineV2/CustomerOnlineV2.Repository/ConnectionHelper/ConnectionHelper.cs +++ b/CustomerOnlineV2/CustomerOnlineV2.Repository/ConnectionHelper/ConnectionHelper.cs @@ -181,6 +181,8 @@ namespace CustomerOnlineV2.Repository.ConnectionHelper response.Extra = Convert.ToString(dt.Rows[0][3]); if (dt.Columns.Count > 4) response.Extra2 = Convert.ToString(dt.Rows[0][4]); + if (dt.Columns.Count > 5) + response.Extra3 = Convert.ToString(dt.Rows[0][5]); return response; } }