IRecipeParser.cs 376 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Aitex.Sorter.Common;
  6. namespace Aitex.Sorter.RT.Module.Recipe
  7. {
  8. public interface IRecipeParser
  9. {
  10. SorterRecipeXml XmlRecipe { get; set; }
  11. bool Init(SorterRecipeXml xmlRecipe, out string reason);
  12. List<TransferInfo> Parse(out string reason);
  13. }
  14. }