This file contains 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 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'); |