private void BtnAddCar_Click(object sender, EventArgs e)
        {
            CarsOptions car = new CarsOptions(this.adminId);

            car.Show();
            this.Close();
        }
Exemple #2
0
        private void MtsOurCars_Click(object sender, EventArgs e)
        {
            CarsOptions cars = new CarsOptions(this.adminId);

            cars.Show();
        }