Ejemplo n.º 1
0
        public IActionResult Get(int id)
        {
            var found = packagesService.GetById(id);

            if (found == null)
            {
                return(NotFound());
            }
            return(Ok(found));
        }