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

28 lines
601 B
C#

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);
}
}