コード例 #1
0
        private bool CheckIfTitleExist(string title)
        {
            var dbmGetData = new DBhelperGetData();
            var recipe     = dbmGetData.GetRecipe(title, "new");

            if (recipe == null)
            {
                return(false);
            }
            return(true);
        }
コード例 #2
0
        public Recipe GetRecipeFromlstBox()
        {
            var dbmGetData = new DBhelperGetData();

            return(dbmGetData.GetRecipe(lstRecipeTitles.SelectedItem.ToString()));
        }