public Story()
     : base()
 {
     AccessStory = new Data.Story();
 }
 public Access.Stories Get(Int32 StoryID)
 {
     Data.Story aStory = new Data.Story(StoryID);
     this.Add(new Access.Story(aStory));
     return(this);
 }
 public Story(Int32 StoryID)
     : base()
 {
     AccessStory = new Data.Story(StoryID);
 }