Domain.Question.Question C# (CSharp) Method

Question() public method

public Question ( ) : System.Collections.Generic
return System.Collections.Generic
        public Question()
        {
            TextAnswers = new List<TextAnswer>();
            BinaryAnswers = new List<BinaryAnswer>();
            GradeAnswers = new List<GradeAnswer>();
            QuestionStages = new List<QuestionStage>();
        }