Created
February 9, 2019 17:52
-
-
Save arun12209/24db124d3a29221aae1087ac1a40118c to your computer and use it in GitHub Desktop.
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 ListComponentCntrl { | |
@AuraEnabled | |
public static List<Contact> loadData(){ | |
List<Contact> conList = [select Id,Name,Email from Contact order by Name asc]; | |
return conList; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment