예제 #1
0
        public StoryFacade <TParent> Move(int targetStoryId, bool before = true)
        {
            _storyRepository.MoveStory(this.Item.ProjectId, this.Item.Id, before ? PivotalStoryRepository.MovePositionEnum.Before : PivotalStoryRepository.MovePositionEnum.After, targetStoryId);

            return(this);
        }