Class: Services::CreateThirdPartyContext
- Inherits:
-
Object
- Object
- Services::CreateThirdPartyContext
- Defined in:
- app/contexts/services/create_third_party_context.rb
Instance Attribute Summary collapse
-
#params ⇒ Object
Returns the value of attribute params.
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(params) ⇒ CreateThirdPartyContext
constructor
A new instance of CreateThirdPartyContext.
Constructor Details
#initialize(params) ⇒ CreateThirdPartyContext
Returns a new instance of CreateThirdPartyContext.
11 12 13 14 |
# File 'app/contexts/services/create_third_party_context.rb', line 11 def initialize(params) @params = params self.extend Services::ThirdPartyCreator end |
Instance Attribute Details
#params ⇒ Object
Returns the value of attribute params.
5 6 7 |
# File 'app/contexts/services/create_third_party_context.rb', line 5 def params @params end |
Class Method Details
.call(params) ⇒ Object
7 8 9 |
# File 'app/contexts/services/create_third_party_context.rb', line 7 def self.call(params) CreateThirdPartyContext.new(params).call end |
Instance Method Details
#call ⇒ Object
16 17 18 |
# File 'app/contexts/services/create_third_party_context.rb', line 16 def call create(params) end |