/// <summary> /// Function to update containers with new labels /// </summary> /// <param name="oldContainerName"></param> /// <param name="newContainerName"></param> public void UpdateContainer(string oldContainerName, string newContainerName) { PerformClientFunctions.UpdateContainer(oldContainerName, newContainerName, this.robot1); }
/// <summary> /// function to execute recipe. /// </summary> /// <param name="recipeName"></param> public void ExecuteRecipe(string recipeName) { PerformClientFunctions.ExecuteRecipe(recipeName, this.robot1); }
/// <summary> /// function to add ingredient containers. /// </summary> /// <param name="ingredientName"></param> public void AddContainers(string ingredientName) { PerformClientFunctions.AddContainers(ingredientName, this.robot1); }
/// <summary> /// function to add new recipe to the robot. /// </summary> public void AddNewRecipe() { PerformClientFunctions.AddNewRecipe(this.robot1); }