You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
890 B
35 lines
890 B
/* |
|
* 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<MDept> parties) { |
|
this.save(moumiPm, eCrossPm, totReport, CRUD.U, parties); |
|
} |
|
}
|
|
|