class UserSearchQuery
def initialize(relation = User.all)
@relation = relation
end
def call(params)
class OverdueInvoicesQuery
def initialize(relation: Invoice.all, as_of: Time.current)
@relation = relation
@as_of = as_of
end