Last active
May 27, 2023 14:38
-
-
Save Mycoola/9220cf0c9f00bdf005b7eb706a391a35 to your computer and use it in GitHub Desktop.
AccountTriggerHelper
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 without sharing class AccountTriggerHelper { | |
public AccountTriggerHelper() { | |
System.debug('Inside AccountTriggerHelper Constructor'); | |
} | |
public void doTask1() { | |
System.debug('Inside Task 1'); | |
} | |
public void doTask2() { | |
System.debug('Inside Task 2'); | |
} | |
public void doTask3() { | |
System.debug('Inside Task 3'); | |
} | |
public void doTask4() { | |
System.debug('Inside Task 4'); | |
} | |
public void doTask5() { | |
System.debug('Inside Task 5'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment