Skip to content

Instantly share code, notes, and snippets.

@thoriyas
thoriyas / AccountOppView.cls
Last active April 12, 2017 09:18
Account with Opportunities View
Public class AccountOppView{
Public List<Account> lstAccounnt{get;set;}
Public AccountOppView(){
lstAccounnt = new List<Account>([Select Id, Name, (Select Id, Name from opportunities) from Account]);
}
public void deleteOpp(){
string oppId = ApexPages.currentPage().getParameters().get('id');