Slide 11
Slide 11 text
Where do we stay ?
class SWE < ActiveRecord::Base!
has_many :flights!
has_many :hotels!
has_many :registrations!
!
def go_to_conference!
my_hotel = hotels.find_by_swe_id id!
my_hotel.book!
my_flight = flights.find_by_swe_id id!
my_flight.book!
my_registration = registrations.find_by_swe_id id!
my_registration.book!
end!
end