private ActionResult RedirectToError(string titel, string message, string loesung) { var model = new PreLogOffModel() { Titel = titel, Message = message, Loesung = loesung }; return(View("_Error", model)); }
private ActionResult RedirectToError(string titel, string message, string loesung) { _Logger.Info("RedirectToError '{0}' '{1}' '{2}'", titel, message, loesung); var model = new PreLogOffModel() { Titel = titel, Message = message, Loesung = loesung }; return(View("_Error", model)); }