Skip to content

Instantly share code, notes, and snippets.

@arun12209
Created February 9, 2019 17:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arun12209/24db124d3a29221aae1087ac1a40118c to your computer and use it in GitHub Desktop.
Save arun12209/24db124d3a29221aae1087ac1a40118c to your computer and use it in GitHub Desktop.
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