private void assembleNotifications(string[][] data) { notificationList = new NotificationList(); for (int i = 0; i < data.Length; i++) { notificationList.addNotification(new Notification(data[i][0], Convert.ToInt64(data[i][1]), data[i][2], Convert.ToBoolean(data[i][3]))); } displayNotifications(); }