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

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


     * @return der registrierte Employee, der sich einloggen darf
     * @throws RegistrationFailedException Fehlerhafte Registration
     */
    public Employee register(RegistrationRequest registrationRequest) throws RegistrationFailedException {
        try {
            EmployeeData data = new EmployeeData();
            data.email = registrationRequest.email;
            data.password = registrationRequest.password;
            data.department = registrationRequest.department;
            data.firstname = registrationRequest.firstname;
            data.lastname = registrationRequest.lastname;
View Full Code Here


        online = false;
    }

    public Employee(DBControl dbControl, long id, long departmentId) {
        super(dbControl, id);
        actual = new EmployeeData();
        modified = new EmployeeData();

        actual.department = departmentId;
        modified.department = departmentId;
    }
View Full Code Here

TOP

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

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.