Module | Core::Interfaces::Controller |
In: |
core/interfaces.rb
|
The Controller will connect the View with the different ServiceProviders. This interface provides the methods available to be called by both the View and the Providers.
constructor method, it
# File core/interfaces.rb, line 96 def initialize(params) raise NotImplementedError end
The main process uses this call to transfer the execution flow control to the controller.
# File core/interfaces.rb, line 108 def exec() raise NoteImplementedError end