Package org.andromda.timetracker.domain

Examples of org.andromda.timetracker.domain.Person


     * @see org.andromda.timetracker.service.PeopleService#createPerson(org.andromda.timetracker.vo.PersonVO)
     */
    protected java.lang.Long handleCreatePerson(org.andromda.timetracker.vo.PersonVO personVO)
        throws java.lang.Exception
    {
        Person person = Person.Factory.newInstance();
        getPersonDao().personVOToEntity(personVO, person, true);
        getPersonDao().create(person);
        return person.getId();
    }
View Full Code Here

TOP

Related Classes of org.andromda.timetracker.domain.Person

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.