package com.fitbank.bpm.common;

import com.fitbank.dto.management.Detail;

public class MessageReset {

    public String execute(Detail detail1, Detail detail2) {
        detail1.findFieldByNameCreate("_MESSAGE_").setValue("");
        detail2.findFieldByNameCreate("_MESSAGE_").setValue("");
        return "";
    }
}
