Dynamically adding class methods to Model

Look at class_eval for creating class methods on the fly. Or extend the class with a module that defines method_missing in the module.

Michael