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); }