Example #1
0
 public static void SavePreferencePointModel(this TempDataDictionary tempData, WeightsModel weightsModel, int personId)
 {
     tempData[PrefPointKey + personId] = weightsModel;
 }
Example #2
0
        public ActionResult Point(WeightsModel weights)
        {
            TempData.SavePreferencePointModel(weights, weights.PersonId);

            return(RedirectToAction("Pairwise", new { id = weights.PersonId }));
        }