Mention methods that should be implemented inside service

This commit is contained in:
Dmitriy Zaporozhets 2013-05-22 17:59:43 +03:00
parent 54d0453234
commit 83e2e62490

View file

@ -28,15 +28,23 @@ class Service < ActiveRecord::Base
end
def title
# implement inside child
end
def description
# implement inside child
end
def to_param
# implement inside child
end
def fields
# implement inside child
[]
end
def execute
# implement inside child
end
end