class MedicalCheck

Public Class Methods

new(med) click to toggle source
# File lib/medical_strategy.rb, line 4
def initialize(med)
    @med = med
    @product_allergic = Product.all
    #@medical_confirmation = medical_confirmation
    @customer_data = []
end

Public Instance Methods

alltogether() click to toggle source
# File lib/medical_strategy.rb, line 11
def alltogether
    @med.alltogether
end