private static void AddMessage(TempDataDictionary tempData, AlertType type, string message, AlertLocation location) { var alertData = tempData.InitializeAlertData(); alertData[location][type].Add(message); tempData["AlertData"] = alertData; }