Examples of SalesOrderTaxesUI


Examples of org.sab.invsys.web.model.order.sales.SalesOrderTaxesUI

import org.springframework.data.domain.Pageable;

public class SalesOrderTaxesMapper {

  public SalesOrderTaxesUI toUIBean(SalesOrderTaxes data) {
    SalesOrderTaxesUI ui = new SalesOrderTaxesUI();

    ui.setAmount(data.getAmount());
    ui.setId(data.getId());
    ui.setTaxName(data.getTaxName());

    return ui;
  }
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.