Esempio n. 1
0
        public bool CommitStep(byte tubeIndex, int stepIndex, RecipeService.OnDownloadRecipeComplete rCallback, RecipeService.OnDownloadStepComplete sCallback)
        {
            //add validation
            bool startCommit = RecipeService.Instance.CommitStep(tubeIndex, stepIndex, rCallback, sCallback);

            return(startCommit);
        }
Esempio n. 2
0
        public bool DownloadRecipe(string fileName, byte tubeIndex, RecipeService.OnDownloadRecipeComplete rCallback, RecipeService.OnDownloadStepComplete sCallback)
        {
            //add validation
            bool startDownload = RecipeService.Instance.DownloadRecipe(fileName, tubeIndex, rCallback, sCallback);

            return(startDownload);
        }