123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Aitex.Sorter.Common;
- namespace Aitex.Sorter.RT.Module.Recipe
- {
- public interface IRecipeParser
- {
- SorterRecipeXml XmlRecipe { get; set; }
- bool Init(SorterRecipeXml xmlRecipe, out string reason);
- List<TransferInfo> Parse(out string reason);
- }
- }
|