Package org.sab.invsys.web.model.order.purchase

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

Related Classes of org.sab.invsys.web.model.order.purchase.PurchaseOrderChargesUI

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.