Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @AuraEnabled
  2. public static List<Holding__c> getHoldings(Id RecordId){
  3. List<Holding__c> hList;
  4.  
  5. hList= [SELECT Amount__c,Fund_Name__c,Share_Price__c,Category__c,Available_Shares__c
  6. FROM Holding__c where Retirement_Account__c =:RecordId ];
  7.  
  8. System.debug('Holding List'+hList);
  9. return hList;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement