Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/RecipeCenter/IRecipeFileContext.cs

28 lines
601 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System.Collections.Generic;
namespace Aitex.Core.RT.RecipeCenter
{
public interface IRecipeFileContext
{
string GetRecipeDefiniton(string chamberType);
IEnumerable<string> GetRecipes(string chamberId, bool includingUsedRecipe);
void PostInfoEvent(string message);
void PostWarningEvent(string message);
void PostAlarmEvent(string message);
void PostDialogEvent(string message);
void PostInfoDialogMessage(string message);
void PostWarningDialogMessage(string message);
void PostAlarmDialogMessage(string message);
string GetRecipeTemplate(string chamberId);
}
}