// GET: api/Patients
 public IEnumerable<SendToGreenwayPatient> Get(string id)
 {
    PatientRepository patientRepository = new PatientRepository();
     return patientRepository.GetPatientList(id);
 }