AJH.CMS.Core.Entities.Category.Category C# (CSharp) Method

Category() public method

public Category ( ) : System
return System
        public Category()
        {
            this.CreationDate = DateTime.Now;
            this.Description = string.Empty;
            this.ID = 0;
            this.IsDeleted = false;
            this.LanguageID = 0;
            this.ModuleID = 0;
            this.Name = string.Empty;
            this.ParentID = 0;
            this.PortalID = 0;
            this.Order = 0;
            this.CreatedBy = 0;
            this.Image = string.Empty;
        }
    }
Category