trabajo-afectivo/lib/escalation/destination_time.rb

14 lines
267 B
Ruby
Raw Normal View History

class Escalation
class DestinationTime
def initialize(start_time, span, biz)
@start_time = start_time
@span = span
@biz = biz
end
def destination_time
@biz.time(@span, :minutes).after(@start_time)
end
end
end