public IHttpActionResult GetShortenPatient(int patientID)
        {
            ShortenPatient bn = dao.GetShortenPatient(patientID);

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