Igman.DB.DAL.Question.Question C# (CSharp) Méthode

Question() public méthode

public Question ( ) : System
Résultat System
        public Question()
        {
            this.Answers = new HashSet<Answer>();
            this.QuestionLikes = new HashSet<QuestionLike>();
            this.QuestionsRatings = new HashSet<QuestionsRating>();
            this.Categories = new HashSet<Category>();
            this.Tags = new HashSet<Tag>();
        }