AJH.CMS.Core.Entities.Article.Article C# (CSharp) Метод

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

public Article ( ) : System
Результат System
        public Article()
        {
            this.ArticleType = CMSEnums.ArticleType.Internal;
            this.CategoryID = 0;
            this.CreationDate = DateTime.Now;
            this.Description = string.Empty;
            this.Details = string.Empty;
            this.ID = 0;
            this.Image = string.Empty;
            this.IsDeleted = false;
            this.KeyWords = string.Empty;
            this.LanguageID = 0;
            this.Name = string.Empty;
            this.PortalID = 0;
            this.SEOName = string.Empty;
            this.Summary = string.Empty;
            this.URL = string.Empty;
            this.Order = 0;
            this.CreatedBy = 0;
            this.ParentObjectID = 0;
            this.ViewCount = 0;
            this.IsPublished = false;
        }
    }
Article