public with sharing class FormMLTriggerSendMapTriggerHandler {
    public static final String SELF = 'FormMLTriggerSendMapping__c';

    public static void onBeforeInsert(List<FormMLTriggerSendMapping__c> formMls) {
        if (TriggerControl.isTriggerEnabled(SELF, TriggerOperation.BEFORE_INSERT)) {
            FormMLTriggerSendMapTriggerHelper.updateFormId(formMls);
        }
    }
    public static void onBeforeUpdate(List<FormMLTriggerSendMapping__c> formMls) {
        if (TriggerControl.isTriggerEnabled(SELF, TriggerOperation.BEFORE_UPDATE)) {
            FormMLTriggerSendMapTriggerHelper.updateFormId(formMls);
        }
    }
}