module Collections
  class Context

    def from
      raise NotImplementedError, 'This method must be implemented'
    end

    def privacy
      raise NotImplementedError, 'This method must be implemented'
    end

  end
end