6.0: NoteService
6.0: Create the NoteService
NoteServicepublic class NoteService { private readonly Guid _userId; public NoteService(Guid userId) { _userId = userId; } } }
Add References
Add the CreateNote() method
CreateNote() methodAdd the GetNotes() Method
GetNotes() MethodLast updated