buli
2023-06-05 e9e1806b0f4b5bae1fc36204ccc5d6fdad52d66f
1
2
3
4
trigger RentalApplyEquipmentSetCheck on Rental_Apply_Equipment_Set__c(before insert, before update, after insert, after update, after delete) {
    RentalApplyEquipmentSetCheckHandler handler = new RentalApplyEquipmentSetCheckHandler();
    handler.run();
}