Examples of PurchaseOrderTaxesUI


Examples of org.sab.invsys.web.model.order.purchase.PurchaseOrderTaxesUI

import org.springframework.data.domain.Pageable;

public class PurchaseOrderTaxesMapper {

  public PurchaseOrderTaxesUI toUIBean(PurchaseOrderTaxes data) {
    PurchaseOrderTaxesUI ui = new PurchaseOrderTaxesUI();

    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.