Package de.xanders.data.customer.dao

Examples of de.xanders.data.customer.dao.Campaign


    /**
     * @see CampaignService#getCampaignById(java.lang.Long)
     */
    protected CampaignVO handleGetCampaignById(java.lang.Long campaignId)
        throws java.lang.Exception {
      Campaign campaign = this.getCampaignDao().load(campaignId);
      return this.getCampaignDao().toCampaignVO(campaign);
    }
View Full Code Here


    /**
     * @see CampaignService#saveCampaign(CampaignVO)
     */
    protected CampaignVO handleSaveCampaign(CampaignVO campaignVO)
        throws java.lang.Exception {
      Campaign campaign = this.getCampaignDao().campaignVOToEntity(campaignVO);
        if (campaign.getCampaignId() == null) {
            campaign = this.getCampaignDao().create(campaign);
            campaignVO.setCampaignId(campaign.getCampaignId());
        }
        else {
            this.getCampaignDao().update(campaign);           
        }
        return campaignVO;
View Full Code Here

TOP

Related Classes of de.xanders.data.customer.dao.Campaign

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.