public Article(string title) { Comments = new List <Comment>(); Id = StaticPersistentStore.GetNextId(); Title = title; }
public Comment(string body) { Id = StaticPersistentStore.GetNextId(); Body = body; }