Esempio n. 1
0
        public AssessmentDetail CreateAssessment()
        {
            // Get the current userid to set as the Assessment creator and first attached user
            int currentUserId = Auth.GetUserId();

            AssessmentManager man = new AssessmentManager();

            return(man.CreateNewAssessment(currentUserId));
        }