1 2 3 4 5 6 7
module Notes class DestroyService < BaseService def execute(note) note.destroy end end end