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; } }
private void SetLabels() { movieLabel.Text = "Film: " + seance.GetMovie().GetTitle(); hallLabel.Text = "Sala: " + seance.GetHall().GetName() + ", ilość miejsc: " + seance.GetHall().GetSeats(); dateLabel.Text = seance.GetDate(); }