1 package org.kuali.student.r2.common.assembler;
2
3 import org.kuali.student.r2.common.dto.ContextInfo;
4
5 public interface DTOAssembler<E, T> {
6 public E assemble(T baseDTO, ContextInfo context) throws AssemblyException;
7 public T disassemble(E businessDTO, ContextInfo context) throws AssemblyException;
8 }