RecipeParserBase.cs 735 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Sorter.RT.Module.Recipe
  6. {
  7. class RecipeParserBase : IRecipeParser
  8. {
  9. public bool Init(Common.SorterRecipeXml xmlRecipe, out string reason)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public List<Common.TransferInfo> Parse(out string reason)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public Common.SorterRecipeXml XmlRecipe
  18. {
  19. get
  20. {
  21. throw new NotImplementedException();
  22. }
  23. set
  24. {
  25. throw new NotImplementedException();
  26. }
  27. }
  28. }
  29. }