public ActionResult <List <Story> > GetStories(string characterId)
        {
            try
            {
                var story = repository.GetStories(characterId);

                if (story == null)
                {
                    return(NotFound());
                }

                if (story.Count == 0)
                {
                    throw new Exception("Não foi possivel encontrar nenhuma story com esse characterId");
                }

                return(story);
            }
            catch (Exception ex)
            {
                throw;
            }
        }