Esempio n. 1
0
        public VyberLetu(List <Let> _volneLety, jehlounCompany _jc, List <Let> _volneLetyZpet = null)
        {
            InitializeComponent();
            jc = _jc;

            nactiLety(_volneLety);

            if (_volneLetyZpet != null)
            {
                this.let_grid.Height         = 214;
                this.let_grid_return.Visible = true;
                this.lbLetZpet.Visible       = true;
                nactiLetyZpet(_volneLetyZpet);
            }

            else
            {
                this.let_grid_return.Visible = false;
                this.lbLetZpet.Visible       = false;
                this.let_grid.Height         = 450;
            }
        }
Esempio n. 2
0
 public Cestujicii(jehlounCompany _company)
 {
     InitializeComponent();
     company = _company;
 }