Ejemplo n.º 1
0
        public MainWindow(JudgeProfile _judgeProfile)
        {
            InitializeComponent();

            judgeProfile = _judgeProfile;

            lblJudgeName.Text = "Welcome " + judgeProfile.Name + "! ! !";
        }
Ejemplo n.º 2
0
        public TopFiveWinners(JudgeProfile _judgeProfile)
        {
            InitializeComponent();

            lblJudgeName.Text = _judgeProfile.Name;

            judgeProfile = _judgeProfile;

            GetTop5();
        }