Exemple #1
0
        public ActionResult DeleteSurveyOptions(int SOID, int SQID)
        {
            surveyLogic.DeleteSurveyOptions(SOID, SQID);

            int    userId   = CurrentUserSession.Attende.ID;
            string userName = string.Concat(CurrentUserSession.Attende.FirstName, " ", CurrentUserSession.Attende.Lastname);

            commonLogic.SaveLog("Survey", "Delete", userId, $"The Survey option id: {SOID} for the Survey question id : {SQID} is deleted by {userName}.");

            return(Json(new { success = true }));
        }