Created
September 13, 2019 01:24
-
-
Save DataSolveProblems/20a4fbf9aa4dbdf3285a12e5702ae14b 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 NewCaseListController { | |
public List<Case> getNewCases(){ | |
List<Case> cases = [select id, CaseNumber from Case where status='New']; | |
return cases; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment