Examples of OrderExample


Examples of org.company.recordshop.domain.OrderExample

   *
   * @return {@link OrderExample}, the resulting businessclass object.
   */
  public OrderExample exampleFromDto(final OrderNumberAndDateDto source) {
    Assert.notNull(source, "argument [source] may not be null");
    OrderExample result = new OrderExample();

    if (source.getOrderNumber() != null) {
      result.setOrderNumber(source.getOrderNumber());
    }
    if (source.getOrderDate() != null) {
      result.setOrderDate(source.getOrderDate());
    }

    return result;
  }
View Full Code Here

Examples of org.company.recordshop.domain.OrderExample

   *
   * @return {@link OrderExample}, the resulting businessclass object.
   */
  public OrderExample exampleFromDto(final OrderWithOrderLinesDto source) {
    Assert.notNull(source, "argument [source] may not be null");
    OrderExample result = new OrderExample();

    if (source.getOrderNumber() != null) {
      result.setOrderNumber(source.getOrderNumber());
    }

    return result;
  }
View Full Code Here

Examples of org.company.recordshop.domain.OrderExample

   *
   * @return {@link OrderExample}, the resulting businessclass object.
   */
  public OrderExample exampleFromDto(final OrderDto source) {
    Assert.notNull(source, "argument [source] may not be null");
    OrderExample result = new OrderExample();

    if (source.getOrderNumber() != null) {
      result.setOrderNumber(source.getOrderNumber());
    }
    if (source.getOrderDate() != null) {
      result.setOrderDate(source.getOrderDate());
    }
    if (source.getDeliveryDateTime() != null) {
      result.setDeliveryDateTime(source.getDeliveryDateTime());
    }
    if (source.getDiscountPercentage() != null) {
      result.setDiscountPercentage(source.getDiscountPercentage());
    }

    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.