io.rtr.alchemy.mapping.Mapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemy-mapping Show documentation
Show all versions of alchemy-mapping Show documentation
Library for implementing mapping of DTO to BO to DB
The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy