class ChinoRuby::Group

Attributes

group_attributes[RW]
group_id[RW]
group_name[RW]
insert_date[RW]
is_active[RW]
last_update[RW]

Public Instance Methods

attributes() click to toggle source
# File lib/chino_ruby/classes.rb, line 732
def attributes
  instance_values
end
attributes=(hash) click to toggle source
# File lib/chino_ruby/classes.rb, line 722
def attributes=(hash)
  hash.each do |key, value|
    if key=="attributes"
      @group_attributes = value
    else
      send("#{key}=", value)
    end
  end
end