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

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


     * @param id           die ID des DataObjects
     * @param departmentId die ID des zugehörigen Departments
     */
    public Project(DBControl dbControl, long id, long departmentId) {
        super(dbControl, id);
        actual = new ProjectData();
        modified = new ProjectData();
        actual.department = departmentId;
        modified.department = departmentId;
    }
View Full Code Here

TOP

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

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.