public ActionResult <Race> GetById(long id)
        {
            var result = _manager.GetRace(id);

            return(result);
        }