// GET: api/Patient
 public IEnumerable<Patient> Get()
 {
     PatientsData patients = new PatientsData();
     return patients.GetPatients();
 }