Created
July 12, 2017 17:01
-
-
Save dhoechst/1eabd3f9e83a200bb007a5798113ff83 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 Loader { | |
public static Map<Id, Account> acountIdToRecordMap { | |
get { | |
if (acountIdToRecordMap == null) { | |
acountIdToRecordMap = new Map<Id, Account> ([Select Name from Account]); | |
} | |
return acountIdToRecordMap; | |
} | |
private set; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment