123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ServiceModel;
- using System.Runtime.Serialization;
- namespace Aitex.Triton160.Common.Interface
- {
- [ServiceContract]
- public interface IRecipeService
- {
- [OperationContract]
- string LoadRecipe(ModuleName chamId, string recipeName);
-
-
-
-
-
- [OperationContract]
- Tuple<string, string> LoadRunTimeRecipeInfo(ModuleName chamId);
-
-
-
-
-
-
- [OperationContract]
- IEnumerable<string> GetRecipes(ModuleName chamId, bool includeUsedRecipe);
-
-
-
-
-
-
- [OperationContract]
- string GetXmlRecipeList(ModuleName chamId, bool includeUsedRecipe);
-
-
-
-
-
-
- [OperationContract]
- bool DeleteRecipe(ModuleName chamId, string recipeName);
-
-
-
-
-
-
- [OperationContract]
- bool DeleteFolder(ModuleName chamId, string folderName);
-
-
-
-
-
-
-
- [OperationContract]
- bool SaveAsRecipe(ModuleName chamId, string recipeName, string recipeContent);
-
-
-
-
-
-
-
- [OperationContract]
- bool SaveRecipe(ModuleName chamId, string recipeName, string recipeContent);
-
-
-
-
-
-
- [OperationContract]
- bool CreateFolder(ModuleName chamId, string folderName);
-
-
-
-
-
-
-
- [OperationContract]
- bool MoveRecipeFile(ModuleName chamId, string folderName, string tragetFolderName);
-
-
-
-
-
-
-
- [OperationContract]
- bool RenameRecipe(ModuleName chamId, string oldName, string newName);
-
-
-
-
-
-
-
- [OperationContract]
- bool RenameFolder(ModuleName chamId, string oldName, string newName);
-
-
-
-
-
- [OperationContract]
- string GetRecipeFormatXml(ModuleName chamId);
-
-
-
-
-
- [OperationContract]
- string GetRecipeTemplate(ModuleName chamId);
- [OperationContract]
- string GetRecipeByBarcode(ModuleName chamId, string barcode);
- }
- }
|