IRecipeFileContext.cs 943 B

123456789101112131415161718192021222324252627282930313233343536
  1. using MECF.Framework.Common.RecipeCenter;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Aitex.Core.RT.RecipeCenter
  8. {
  9. public interface IRecipeFileContext
  10. {
  11. string GetRecipeDefiniton(string chamberType);
  12. IEnumerable<string> GetRecipes(string chamberId, bool includingUsedRecipe);
  13. void PostInfoEvent(string message);
  14. void PostWarningEvent(string message);
  15. void PostAlarmEvent(string message);
  16. void PostDialogEvent(string message);
  17. void PostInfoDialogMessage(string message);
  18. void PostWarningDialogMessage(string message);
  19. void PostAlarmDialogMessage(string message);
  20. string GetRecipeTemplate(string chamberId);
  21. Dictionary<string, ObservableCollection<RecipeTemplateColumnBase>> GetGroupRecipeTemplate();
  22. }
  23. }