示例#1
0
        private void SetLabels()
        {
            movieLabel.Text = "Film: " + seance.GetMovie().GetTitle();
            hallLabel.Text  = "Sala: " + seance.GetHall().GetName();
            sizeLabel.Text  = "Rozmiar sali: " + seance.GetHall().GetSeats();
            dateLabel.Text  = seance.GetDate();

            if (MainUserServiceImpl.GetInstance().GetUserRole() == Role.DEFAULT)
            {
                reservationPanel.Visible = false;
            }
        }
示例#2
0
 private void SetLabels()
 {
     movieLabel.Text = "Film: " + seance.GetMovie().GetTitle();
     hallLabel.Text  = "Sala: " + seance.GetHall().GetName() + ", ilość miejsc: " + seance.GetHall().GetSeats();
     dateLabel.Text  = seance.GetDate();
 }