IRecipeFileContext.cs 726 B

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