Module: NcsNavigator::Warehouse::Models::MdesModel::ClassMethods
- Defined in:
- lib/ncs_navigator/warehouse/models/mdes_model.rb
Instance Method Summary collapse
-
#mdes_order(*input) ⇒ Array<Symbol>
Sets or retrieves the required property order.
-
#mdes_table_name ⇒ String
The name of the table in the MDES corresponding to this model.
Instance Method Details
#mdes_order(*variable_names) ⇒ Array<Symbol> #mdes_order ⇒ Array<Symbol>
Sets or retrieves the required property order.
68 69 70 71 72 73 74 |
# File 'lib/ncs_navigator/warehouse/models/mdes_model.rb', line 68 def mdes_order(*input) if input.empty? @mdes_order else @mdes_order = input end end |
#mdes_table_name ⇒ String
The name of the table in the MDES corresponding to this model.
54 55 56 |
# File 'lib/ncs_navigator/warehouse/models/mdes_model.rb', line 54 def mdes_table_name self.storage_names[:default] end |