class ExploreCourses::Schedule
Attributes
days[R]
end_date[R]
end_time[R]
instructors[R]
location[R]
start_date[R]
start_time[R]
Public Class Methods
new(start_date, end_date, start_time, end_time, location, days, instructors)
click to toggle source
# File lib/explorecourses/schedule.rb, line 5 def initialize(start_date, end_date, start_time, end_time, location, days, instructors) @start_date = start_date @end_date = end_date @start_time = start_time @end_time = end_time @location = location @days = days @instructors = instructors end