public void DeleteTripById(int id) { _context.Remove(_context.Trips.Where(w => w.Id == id).FirstOrDefault()); }