NDG.DataAccessModels.Question.Question C# (CSharp) Method

Question() public method

public Question ( ) : System
return System
        public Question()
        {
            this._Answer = new EntitySet<Answer>(new Action<Answer>(this.attach_Answer), new Action<Answer>(this.detach_Answer));
            this._DependentQuestions = new EntitySet<DependentQuestions>(new Action<DependentQuestions>(this.attach_DependentQuestions), new Action<DependentQuestions>(this.detach_DependentQuestions));
            this._DependentQuestion = default(EntityRef<DependentQuestions>);
            this._Category = default(EntityRef<Category>);
            OnCreated();
        }