Package de.xanders.data.system.dao

Examples of de.xanders.data.system.dao.Event


    /**
     * @see EventService#getEventById(java.lang.Long)
     */
    protected EventVO handleGetEventById(java.lang.Long eventId)
        throws java.lang.Exception {
      Event event = this.getEventDao().load(eventId);
      return this.getEventDao().toEventVO(event);
    }
View Full Code Here


    /**
     * @see EventService#saveEvent(EventVO)
     */
    protected void handleSaveEvent(EventVO eventVO)
        throws java.lang.Exception {
      Event event = this.getEventDao().eventVOToEntity(eventVO);
        if (event.getEventId() == null) {
            this.getEventDao().create(event);
        }
        else {
            this.getEventDao().update(event);           
        }
View Full Code Here

TOP

Related Classes of de.xanders.data.system.dao.Event

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.