Exemplo n.º 1
0
        public StudentPageViewModel()
        {
            _studentCatalog  = new StudentCatalog();
            _selectedStudent = null;

            _deletionCommand = null; // TODO - This needs to be changed
        }
Exemplo n.º 2
0
        public StudentPageViewModel()
        {
            _studentCatalog  = new StudentCatalog();
            _selectedStudent = null;

            _deletionCommand = new DeleteCommand(_studentCatalog, this);
        }