public IActionResult Index()
        {
            if (!MyUser.Login(Cookie.GetUuid()))
            {
                MyUser.CreateUser();
            }

            ViewData["Subjects"] = Subjects.GetAllWithMyVote(MyUser.GetId());
            ViewData["Now"]      = Infos.GetNowSubjectId();
            return(View());
        }