Ejemplo n.º 1
0
        private void listOfCategories_Click(object sender, EventArgs e)
        {
            CategoryDishForm categoryDishForm = new CategoryDishForm();

            if (categoryDishForm.ShowDialog() == DialogResult.OK)
            {
                this.categoryDishesTableAdapter.Fill(this.restaurantAppDataSet.CategoryDishes);
            }
        }
Ejemplo n.º 2
0
        private void dishcategorybutton_Click(object sender, EventArgs e)
        {
            CategoryDishForm categoryDishForm = new CategoryDishForm();

            categoryDishForm.Show();
        }