Guest User

Untitled

a guest
Nov 15th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Appointment
  2. attr_accessor :date, :patient, :doctor
  3. @@all = []
  4. def initialize(date, patient, doctor)
  5. @date = date
  6. @patient = patient
  7. @doctor = doctor
  8. @@all << self
  9. end
  10.  
  11. def self.all
  12. @@all
  13. end
  14. end
Add Comment
Please, Sign In to add comment