Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public static Legitimation__c createLegitimation(Account new Account)
  2. {
  3. Legitimation__c newLegitimation = new Legitimation__c();
  4. newLegitimation.Account__c = newAccount.Id;
  5. insert newLegitimation;
  6. return newLegitimation;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement