IUiSequenceManager.cs 949 B

1234567891011121314151617181920212223242526
  1. using MECF.Framework.Common.Equipment;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CyberX8_MainPages.Sequence
  8. {
  9. public interface IUiSequenceManager
  10. {
  11. List<string> GetSequenceNameList(string search);
  12. List<string> GetSequenceNameList();
  13. List<string> GetRecipesByPath(string prefixPath);
  14. bool CreateSequenceFolder(string foldername);
  15. bool DeleteSequenceFolder(string foldername);
  16. bool SaveSequence(string name, string content);
  17. List<string> GetRecipes(ModuleName chamId, bool includeUsedRecipe);
  18. string GetSequence(string sequenceName);
  19. bool DeleteSequence(string sequenceName);
  20. bool RenameSequence(string oldName, string newName);
  21. bool SaveAsSequence(string sequenceName, string sequenceContent);
  22. string GetSequenceFormatXml();
  23. }
  24. }