Skip to content

Instantly share code, notes, and snippets.

@Mycoola
Last active May 27, 2023 14:38
Show Gist options
  • Save Mycoola/9220cf0c9f00bdf005b7eb706a391a35 to your computer and use it in GitHub Desktop.
Save Mycoola/9220cf0c9f00bdf005b7eb706a391a35 to your computer and use it in GitHub Desktop.
AccountTriggerHelper
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