Guest User

Untitled

a guest
Feb 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public class PassDoelgroep {
  2. @AuraEnabled
  3. public static string Doelgroep(String Doelgroep) {
  4. return Doelgroep;
  5. }
  6. }
  7.  
  8. public class picklistController {
  9. @AuraEnabled
  10. public static List<Opleiding__c> findAll() {
  11. String doelgroep = PassDoelgroep.Doelgroep();
  12. return [SELECT id, name, Doelgroep__c
  13. FROM Opleiding__c
  14. WHERE Actief__c=true
  15. AND Doelgroep__c = :Doelgroep
  16. LIMIT 50];
  17. }
  18. }
Add Comment
Please, Sign In to add comment