Пример #1
0
        public StudentPageViewModel()
        {
            _studentCatalog  = new StudentCatalog();
            _selectedStudent = null;

            _deletionCommand = null; // TODO - This needs to be changed
        }
Пример #2
0
        public StudentPageViewModel()
        {
            _studentCatalog  = new StudentCatalog();
            _selectedStudent = null;

            _deletionCommand = new DeleteCommand(_studentCatalog, this);
        }