Package org.company.recordshop.service.dto

Examples of org.company.recordshop.service.dto.DisLikesDto


  DisLikesDto toDto(final Artist source, final Map<Object, Object> translated) {
    if (translated.containsKey((source))) {
      return (DisLikesDto) translated.get(source);
    }
    Assert.notNull(source, "argument [source] may not be null");
    DisLikesDto result = new DisLikesDto(source.getId(), source
        .getVersion());
    result.setFirstName(source.getFirstName());
    result.setLastName(source.getLastName());

    translated.put(source, result);

    return result;
  }
View Full Code Here

TOP

Related Classes of org.company.recordshop.service.dto.DisLikesDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.