public StudentPageViewModel() { _studentCatalog = new StudentCatalog(); _selectedStudent = null; _deletionCommand = null; // TODO - This needs to be changed }
public StudentPageViewModel() { _studentCatalog = new StudentCatalog(); _selectedStudent = null; _deletionCommand = new DeleteCommand(_studentCatalog, this); }