public ActionResult Create(string food, string sugarLevel, DateTime stampTime, string carb, int loginId) { Login foundLogin = Login.Find(loginId); Breakfast newBreakfast = new Breakfast(food, stampTime, float.Parse(sugarLevel), float.Parse(carb), loginId); newBreakfast.Save(); List <Breakfast> newList = Breakfast.GetAllBreakfast(); ViewBag.Breakfast = newList; return(View("Index", foundLogin)); }