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

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

public User ( ) : System
Результат System
        public User()
        {
            this.CreationDate = DateTime.Now;
            this.Email = string.Empty;
            this.ID = 0;
            this.IsActive = false;
            this.IsDeleted = false;
            this.LanguageID = 0;
            this.Name = string.Empty;
            this.Password = string.Empty;
            this.PortalID = 0;
        }
    }
User