예제 #1
0
파일: Comment.cs 프로젝트: daywrite/EApp
 public Comment(Post post, User author, string content)
     : base()
 {
     this.post = post;
     this.author = author;
     this.content = content;
 }
예제 #2
0
파일: User.cs 프로젝트: daywrite/EApp
        public static User Create(string name, string email, string password)
        {
            User user = new User();

            user.Name = name;
            user.NickName = name;
            user.Email = email;
            user.Password = password;

            return user;
        }
예제 #3
0
파일: Comment.cs 프로젝트: daywrite/EApp
 public static Comment Create(Post post, User author, string content)
 {
     return new Comment(post, author, content);
 }
예제 #4
0
파일: Post.cs 프로젝트: daywrite/EApp
 public Post(Topic topic, User author, string content)
 {
     this.topic = topic;
     this.author = author;
     this.content = content;
 }
예제 #5
0
파일: Post.cs 프로젝트: daywrite/EApp
 public static Post Create(Topic topic, User author, string content)
 {
     return new Post(topic, author, content);
 }