io.rtr.alchemy.mapping.Mapper Maven / Gradle / Ivy
package io.rtr.alchemy.mapping;
/** Defines how to map an object to and from DTO and business object */
public interface Mapper {
TDto toDto(TBo source);
TBo fromDto(TDto source);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy