binxie
2024-01-18 0f648a2059e4c0f0f850b69128e2123673732ed1
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();
}