using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Aitex.Sorter.RT.Module.Recipe { class RecipeParserBase : IRecipeParser { public bool Init(Common.SorterRecipeXml xmlRecipe, out string reason) { throw new NotImplementedException(); } public List Parse(out string reason) { throw new NotImplementedException(); } public Common.SorterRecipeXml XmlRecipe { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } }