Ejemplo n.º 1
0
 public Person(string firstname, string lastname, string twitter)
 {
     Id        = StaticPersistentStore.GetNextId();
     FirstName = firstname;
     LastName  = lastname;
     Twitter   = twitter;
 }
Ejemplo n.º 2
0
 public Comment(string body)
 {
     Id   = StaticPersistentStore.GetNextId();
     Body = body;
 }
Ejemplo n.º 3
0
 public Article(string title)
 {
     Comments = new List <Comment>();
     Id       = StaticPersistentStore.GetNextId();
     Title    = title;
 }