using MECF.Framework.Common.Equipment; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CyberX8_MainPages.Sequence { public interface IUiSequenceManager { List GetSequenceNameList(string search); List GetSequenceNameList(); List GetRecipesByPath(string prefixPath); bool CreateSequenceFolder(string foldername); bool DeleteSequenceFolder(string foldername); bool SaveSequence(string name, string content); List 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(); } }