public MainWindow(JudgeProfile _judgeProfile) { InitializeComponent(); judgeProfile = _judgeProfile; lblJudgeName.Text = "Welcome " + judgeProfile.Name + "! ! !"; }
public TopFiveWinners(JudgeProfile _judgeProfile) { InitializeComponent(); lblJudgeName.Text = _judgeProfile.Name; judgeProfile = _judgeProfile; GetTop5(); }