BookMgnt.Models.User.User C# (CSharp) Method

User() public method

public User ( ) : System
return System
        public User()
        {
            this.Comments = new HashSet<Comment>();
            this.Roles = new HashSet<Role>();
        }
User