public patient getByName(string name) { patient acc = _context.patients.FirstOrDefault(o => o.name == name); return(acc); }