// GET api/Volunteer/5
 public Volunteer Get(string id)
 {
     DataContext db = new DataContext();
     return db.GetVolunteerById( id );
 }