Esempio n. 1
0
 public Article(
     ArticleId id,
     string title,
     string body,
     UserId auther
     )
 {
     Id          = id;
     this.title  = title;
     this.body   = body;
     this.auther = auther;
 }
Esempio n. 2
0
 public bool IsSameId(ArticleId id)
 {
     return(Id.Equals(id));
 }