Esempio n. 1
0
        private void changeServiceCost_Click(object sender, EventArgs e)
        {
            whatToDo = false;
            AddOrEditService es = new AddOrEditService(whatToDo, priceID);

            es.ShowDialog();
            UpdatePriceList();
        }
Esempio n. 2
0
        private void addService_Click(object sender, EventArgs e)
        {
            whatToDo = true;
            AddOrEditService aser = new AddOrEditService(whatToDo);

            aser.ShowDialog();
            UpdatePriceList();
        }