unknown
2023-05-12 b9af197bb4cd295951c6def540a2105899ba2fdd
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();
}