Ejemplo n.º 1
0
        public IActionResult GetAlerts(long ptntid = 0)
        {
            var res = _pfd.GetAllAlerts(ptntid);

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

            return(Ok(res));
        }