binxie
2024-01-20 1d91be0be5220ce19ee64de5a5c9a8237b1c15b1
1
2
3
4
trigger AccountDelayApplyTrigger on Account_Delay_Apply__c (before insert, after insert, before update,after update) {
    AccountDelayApplyHandler handler = new AccountDelayApplyHandler();
    handler.run();
}