Articles.Models.Article.Article C# (CSharp) Метод

Article() публичный Метод

public Article ( ) : System
Результат System
        public Article()
        {
            this.Likes = new HashSet<Like>();
            this.Tags = new HashSet<Tag>();
            this.Comments = new HashSet<Comment>();
        }
Article