Package com.sandrini.sandelivery.model

Examples of com.sandrini.sandelivery.model.Portfolio


  public List<Portfolio> getAllPortfolio() {
    return getSession().createQuery("from Portfolio order by title").list();
  }

  public void deletePortfolio(Long serviceId) {
    Portfolio service = getPortfolio(serviceId);
    if (service != null) {
      getSession().delete(service);
    }
  }
View Full Code Here


      return null;
    }
  }

  public void createPortfolio(String title, String description, String image) {
    Portfolio portfolio = new Portfolio();
    portfolio.setTitle(title);
    portfolio.setDescription(description);
    portfolio.setImage(image);
    portfolioDao.createPortfolio(portfolio);
  }
View Full Code Here

TOP

Related Classes of com.sandrini.sandelivery.model.Portfolio

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.