All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rtr.alchemy.mapping.Mapper Maven / Gradle / Ivy

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