Ejemplo n.º 1
0
 public Story()
     : base()
 {
     AccessStory = new Data.Story();
 }
Ejemplo n.º 2
0
 public Access.Stories Get(Int32 StoryID)
 {
     Data.Story aStory = new Data.Story(StoryID);
     this.Add(new Access.Story(aStory));
     return(this);
 }
Ejemplo n.º 3
0
 public Story(Int32 StoryID)
     : base()
 {
     AccessStory = new Data.Story(StoryID);
 }