Package com.cin.entity

Examples of com.cin.entity.Payroll


 
    return anDTO;
  }
  public void addPayroll(UserDTO agent, int paymentValue) {
    Userrecord agentEJB = (Userrecord) manager.find(Userrecord.class, agent.getSsn());
    Payroll payrollEJB = new Payroll();
    payrollEJB.setAgent(agentEJB);
    payrollEJB.setPaymentValue(paymentValue);
    persist(payrollEJB);
  }
View Full Code Here

TOP

Related Classes of com.cin.entity.Payroll

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.