Example #1
0
        public ActionResult Get(int id)
        {
            var log = _logService.BuscaPorId(id);

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

            return(Ok(log));
        }