private void BtnBuy_Click(object sender, EventArgs e)
        {
            //СОБЫТИЕ НАЖАТИЯ КНОПКИ ПОКУПКИ
            switch (cbType.SelectedIndex)
            {
            case 0:     //PlaneDataType.BuyPlane покупка
            {
                game.BuyPlane(model, buyPrice);
            }
            break;

            case 1:     //PlaneDataType.RentPlane аренда
            {
                game.RentPlane(model, rentPrice, DaysValue);
            }
            break;

            case 2:     //PlaneDataType.LeasingPlane лизинг
            {
                game.LeasePlane(model, rentPrice, DaysValue);
            }
            break;
            }
        }