/// <summary>
        /// Delete the managed StoryFacade
        /// </summary>
        /// <returns>Parent Facade</returns>
        public async Task <TParent> DeleteAsync()
        {
            await _storyRepository.DeleteStoryAsync(this.Item.ProjectId, this.Item.Id);

            return(Done());
        }