Example #1
0
        private void BTN_NEW_CUSTOMER_Click(object sender, EventArgs e) //הוספת לקוח חדש
        {
            Customer          customer = new Customer();
            FORM_NEW_CUSTOMER fnc      = new FORM_NEW_CUSTOMER();

            fnc.ShowDialog();
            DGV_CUSTOMER.DataSource = customer.GetCustomers();
        }
        //כפתור לקוח חדש
        private void BTN_INSERT_CUSTOMER_Click(object sender, EventArgs e)
        {
            FORM_NEW_CUSTOMER fnc = new FORM_NEW_CUSTOMER();

            fnc.ShowDialog();
        }