BookMgnt.Models.User.User C# (CSharp) 메소드

User() 공개 메소드

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