示例#1
0
        /**
         * Alows the Student to place their vote on a Candidate after confirmation
         */
        public ActionResult Voting(int id)
        {
            string currentUserID = "";

            // Determine what role is the Student
            // capture the id of the Student that is voting for any roles
            if (TempData.ContainsKey("StudentRole"))
            {
                string studentRole = TempData["StudentRole"].ToString();

                if (studentRole.Equals("Candidate"))
                {
                    currentUserID           = TempData["CandidateID"].ToString();
                    TempData["CandidateID"] = currentUserID;
                    iVote = new Candidate();
                }
                else if (studentRole.Equals("Voter"))
                {
                    currentUserID       = TempData["VoterID"].ToString();
                    TempData["VoterID"] = currentUserID;
                    iVote = new Voter();
                }
                else if (studentRole.Equals("Admin"))
                {
                    currentUserID       = TempData["AdminID"].ToString();
                    TempData["AdminID"] = currentUserID;
                    iVote = new Admin();
                }
                TempData["StudentRole"] = studentRole;

                // Vote for the candidate by passing the candidate ID and the current user ID
                iVote.Vote(id, Convert.ToInt32(currentUserID));

                // TODO
                TempData["msg"] = "<script>alert('Change succesfully');</script>";

                // redirect to stats page
                return(RedirectToAction("Stats", "Home"));
            }

            return(RedirectToAction("Login", "Home"));
        }
示例#2
0
        public async Task <ActionResult <VoteLbResponse> > Vote([FromBody] ChooserLbMessage message)
        {
            var status = await _vote.Vote(message);

            return(status);
        }