Created
January 6, 2020 19:48
-
-
Save sfmishra/8a2c287d8678329abd5de66a4bf47387 to your computer and use it in GitHub Desktop.
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 AccountController { | |
public Account createAccount(String accName, Integer employees, Decimal revenue) { | |
Account newAcc = new Account(Name = accName, NumberOfEmployees = employees, AnnualRevenue = revenue); | |
insert newAcc; | |
return newAcc; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment