コード例 #1
0
ファイル: Topic.cs プロジェクト: daywrite/EApp
        public static Topic Create(string name, string summary, DateTime expiredDate)
        {
            Topic topic = new Topic();

            topic.Name = name;
            topic.Summary = summary;
            topic.ExpiredDate = expiredDate;

            return topic;
        }
コード例 #2
0
ファイル: Post.cs プロジェクト: daywrite/EApp
 public Post(Topic topic, User author, string content)
 {
     this.topic = topic;
     this.author = author;
     this.content = content;
 }
コード例 #3
0
ファイル: Post.cs プロジェクト: daywrite/EApp
 public static Post Create(Topic topic, User author, string content)
 {
     return new Post(topic, author, content);
 }