- Class level variables are considered bad practice. Instance variables are the preferred way of storing object state.
def self.build_customer(contents)
@@customer = []
contents.each {|row| @@customer << Customer.new(row)}
@@customer.count
end