public ActionResult <Donor> Get(int id) { Donor donor; donor = _donorRepository.getDonor(id); return(Ok(donor)); }