public IActionResult GetAlerts(long ptntid = 0) { var res = _pfd.GetAllAlerts(ptntid); if (res == null) { return(NotFound()); } return(Ok(res)); }