public ActionResult <Adventurer> GetAdventurer(int id)
        {
            var adventurer = adventurerService.GetById(id);

            //var adventurer = _context.Adventurers.Find(id);

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