/// <summary>
 /// Get a facade that manages all the stories of this project
 /// </summary>
 /// <returns>facade that manages the result</returns>
 public async Task <StoriesFacade> AllAsync()
 {
     return(new StoriesFacade(this, await _storyRepository.GetStoriesAsync(this.ParentFacade.Item.Id)));
 }