class Pumi::Bot::Wikipedia::CommunesInCambodiaArticle::Province

def communes

def communes
  Pumi::Commune.where(province_id: id)
end

def districts

def districts
  Pumi::District.where(province_id: id).map { |district| District.new(district) }
end

def villages_count

def villages_count
  Pumi::Village.where(province_id: id).count
end