Package com.art.anette.datamodel.dataobjects.sqldata

Examples of com.art.anette.datamodel.dataobjects.sqldata.TaskData


     * @param workPackageId die ID des WorkPackage
     */
    public Task(DBControl dbControl, long id, long employee, long workPackageId) {
        super(dbControl, id);
        this.employee = employee;
        actual = new TaskData();
        modified = new TaskData();
        actual.workPackage = workPackageId;
        modified.workPackage = workPackageId;
    }
View Full Code Here

TOP

Related Classes of com.art.anette.datamodel.dataobjects.sqldata.TaskData

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.