/// <summary>
        /// Add a note to the managed story
        /// </summary>
        /// <param name="text">text of the note</param>
        /// <returns>This</returns>
        public async Task <StoryFacade <TParent> > AddNoteAsync(string text)
        {
            var note = await _storyRepository.AddNoteAsync(this.Item.ProjectId, this.Item.Id, text);

            this.Item.Notes.Add(note);
            return(this);
        }