Package beans.expenditure.entity

Examples of beans.expenditure.entity.ExpenditureDetails


* @author petr
*/
public class ExpenditureItemData extends DataChunk<ExpenditureDetails> implements Cloneable {

    public ExpenditureItemData(DirectoryServiceItem service) throws ClipsException {
        super(new ExpenditureDetails());
        getDetails().parentID = service.getID();
    }
View Full Code Here


        super(new ExpenditureDetails());
        getDetails().parentID = service.getID();
    }
   
    public ExpenditureItemData(SerRenLocal service) throws ClipsException {
        super(new ExpenditureDetails());
        getDetails().parentID = service.getID();
    }
View Full Code Here

TOP

Related Classes of beans.expenditure.entity.ExpenditureDetails

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.