예제 #1
0
        /// <summary>
        /// Get a story facade for a specific story
        /// </summary>
        /// <param name="id">the story id</param>
        /// <returns>a facade that manages the loaded Story</returns>
        public StoryFacade <StoriesProjectFacade> Get(int id)
        {
            var lStory = _storyRepository.GetStory(this.ParentFacade.Item.Id, id);

            return(new StoryFacade <StoriesProjectFacade>(this, lStory));
        }