Examples of PurchaseOrderChargesUI


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

import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.Pageable;

public class PurchaseOrderChargesMapper {
  public PurchaseOrderChargesUI toUIBean(PurchaseOrderCharges data) {
    PurchaseOrderChargesUI ui = new PurchaseOrderChargesUI();

    ui.setAmount(data.getAmount());
    ui.setChargeName(data.getChargeName());
    ui.setId(data.getId());

    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.