public static PayrollAllocation map()

in service/src/main/java/org/apache/fineract/cn/payroll/service/internal/mapper/PayrollAllocationMapper.java [30:36]


  public static PayrollAllocation map(final PayrollAllocationEntity payrollAllocationEntity) {
    final PayrollAllocation payrollAllocation = new PayrollAllocation();
    payrollAllocation.setAccountNumber(payrollAllocationEntity.getAccountNumber());
    payrollAllocation.setAmount(payrollAllocationEntity.getAmount());
    payrollAllocation.setProportional(payrollAllocationEntity.getProportional());
    return payrollAllocation;
  }