public ActionResult Interim(NotificationInterimViewModel model)
        {
            if (!ModelState.IsValid)
            {
                return(View(model));
            }

            TempData[ImportNotificationNumber]       = model.NotificationNumber;
            TempData[ImportNotificationReceivedDate] = model.NotificationReceivedDate;
            TempData[ImportNotificationInterim]      = model.IsInterim;

            return(RedirectToAction("NotificationType"));
        }
        public ActionResult Interim(NotificationInterimViewModel model)
        {
            if (!ModelState.IsValid)
            {
                return View(model);
            }

            TempData[ImportNotificationNumber] = model.NotificationNumber;
            TempData[ImportNotificationReceivedDate] = model.NotificationReceivedDate;
            TempData[ImportNotificationInterim] = model.IsInterim;

            return RedirectToAction("NotificationType");
        }