TestDxo.java 293 Bytes
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12
package jp.agentec.sinaburocast.dxo;

import java.util.List;

import jp.agentec.sinaburocast.dto.TestDto;
import jp.agentec.sinaburocast.entity.Test;

public interface TestDxo {
    public TestDto convert(Test test);
    public void convert(List<Test> testList, List<TestDto> testDtoList);

}