IUiRecipeManager.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using MECF.Framework.Common.RecipeCenter;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. namespace CyberX8_MainPages.PMs
  6. {
  7. interface IUiRecipeManager
  8. {
  9. string LoadRecipe(string chamId, string receipeName);
  10. Tuple<string, string> LoadRunTimeRecipeInfo(string chamId);
  11. IEnumerable<string> GetRecipes(string chamId, bool includeUsedRecipe);
  12. ObservableCollection<RecipeNode> GetRecipesByType(string recipeType);
  13. bool DeleteRecipe(string chamId, string recipeName);
  14. bool SaveAsRecipe(string chamId, string recipeName, string recipeContent);
  15. bool SaveRecipe(string chamId, string recipeName, string recipeContent);
  16. bool RenameRecipe(string chamId, string oldName, string newName);
  17. bool CreateFolder(string chamId, string folderName);
  18. bool MoveRecipeFile(string chamId, string folderName, string tragetFolderName);
  19. bool DeleteFolder(string chamId, string foldName);
  20. string GetXmlRecipeList(string chamId, bool includingUsedRecipe);
  21. bool RenameFolder(string chamId, string oldName, string newName);
  22. string GetRecipeFormatXml(string chamId);
  23. string GetRecipeTemplate(string chamId);
  24. }
  25. }