Exemple #1
0
        public ActionResult <string> Get(int id)
        {
            var pacite = _pacienteService.FindById(id);

            if (pacite == null)
            {
                return(NotFound(id));
            }
            return(Ok(pacite));
        }