| 1234567891011121314151617181920212223242526 | using MECF.Framework.Common.Equipment;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace PunkHPX8_MainPages.Sequence{    public interface IUiSequenceManager    {        List<string> GetSequenceNameList(string search);        List<string> GetSequenceNameList();        List<string> GetRecipesByPath(string prefixPath);        bool CreateSequenceFolder(string foldername);        bool DeleteSequenceFolder(string foldername);        bool SaveSequence(string name, string content);        List<string> GetRecipes(ModuleName chamId, bool includeUsedRecipe);        string GetSequence(string sequenceName);        bool DeleteSequence(string sequenceName);        bool RenameSequence(string oldName, string newName);        bool SaveAsSequence(string sequenceName, string sequenceContent);        string GetSequenceFormatXml();    }}
 |