Пример #1
0
        private void ExecuteEdit(object p)
        {
            if (p != null && p is ExamPeriod)
            {
                var examPeriod = p as ExamPeriod;

                AddExamPeriodView view = new AddExamPeriodView(examPeriod);
                view.ShowDialog();
            }
        }
Пример #2
0
        private void ExecuteOpen()
        {
            AddExamPeriodView view = new AddExamPeriodView();

            view.ShowDialog();
        }