Created
February 21, 2020 18:05
-
-
Save arun12209/18b2cd4a1a96e82969c17c1bc6e23af0 to your computer and use it in GitHub Desktop.
LightningMapCntrl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LightningMapCntrl { | |
@AuraEnabled | |
public static List<Account> fetchAllAccounts(){ | |
List<Account> accList = [Select Id,Name,Website,BillingCity,BillingStreet,BillingPostalCode,BillingState,BillingCountry from Account ]; | |
return accList; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment