Skip to content

Instantly share code, notes, and snippets.

@saicharanreddyk
Created March 22, 2020 06:49
Show Gist options
  • Save saicharanreddyk/28d05b5de662bf45b569cc81f111fe93 to your computer and use it in GitHub Desktop.
Save saicharanreddyk/28d05b5de662bf45b569cc81f111fe93 to your computer and use it in GitHub Desktop.
AccountService
public with sharing class AccountService {
public Account createAccount( String accountName, String accountNumber, String tickerSymbol ) {
Account newAcct = new Account(
Name = accountName,
AccountNumber = accountNumber,
TickerSymbol = accountNumber
);
return newAcct;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment