/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package kr.co.kihyun.beans.ecross; import java.util.Collection; import kr.co.kihyun.beans.entity.MDept; import kr.co.kihyun.beans.entity.TotReport; import kr.co.kihyun.beans.entity.ecross.CRUD; import kr.co.kihyun.beans.entity.util.MPersistenceManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * * @author bhs */ public class VCMCCMC2014 extends ECrossInterface { private static final Logger LOG = LoggerFactory.getLogger(VCMCCMC2014.class); private TotReport totReport; public VCMCCMC2014(TotReport totReport) { super(TotReport.class); this.totReport = totReport; } @Override public void saveAll(MPersistenceManager moumiPm, MPersistenceManager eCrossPm, Collection parties) { this.save(moumiPm, eCrossPm, totReport, CRUD.U, parties); } }