public ActionResult DraftHistory() { var player = User.Identity.Name; var model = FileDatabase.GetHistoryDbForPlayer(player); model.AllCards = FileDatabase.GetAllCards(); return(this.View("Drafthistory", model)); }