Computer Science, asked by boddepallihemavarun, 1 day ago

1. C#: Notes Store In this challenge, the task is to implement a class called NotesStore. The class will manage a collection of notes, with each note having a state and a name. Valid states for notes are completed', 'active', and others. All other states are invalid. The class must have the following methods

Answers

Answered by khadeshivani00
3

Answer:

The idea is similar here. We will set up actions that will end up triggering our store methods that modify the state. As the state changes, our views will update. To get started, we can implement a NoteStore and then define logic to manipulate it. Once we have done that, we have completed porting our application to the Flux architecture

Similar questions