Package org.ocobo.model

Examples of org.ocobo.model.Recipe


  }

  @Transactional
  public Recipe removeRecipe(int id) throws RecipeException {
    try {
      final Recipe recipe = loadRecipe(id);
      return removeRecipe(recipe);
    }
    catch (DataAccessException ex) {
      throw new RecipeException(id, "Error removing the recipe.", ex);
    }
View Full Code Here

TOP

Related Classes of org.ocobo.model.Recipe

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.