6.0: NoteService
6.0: Create the NoteService
NoteService
The service layer is how our application interacts with the database. In this section, we will create the NoteService
that will push and pull notes from the database.
Right click on ElevenNote.Services
Add -> Class and name it
NoteService.cs
Make the class public
Create a constructor and a private field of type Guid called
_userId
:
Add References
Right click on ElevenNote.Services and choose Add -> Reference
Select the ElevenNote.Models and ElevenNote.Data projects
We add references so that we can use the models and properties from those projects.
Add the CreateNote()
method
CreateNote()
methodIn the
NoteService.cs
file, add the followingCreateNote
method within theNoteService
class:CTRL .
to bring in the using statements.This will create an instance of
Note
.
Add the GetNotes()
Method
GetNotes()
MethodAdd the following
GetNotes()
method in theNoteService
classThis method will allow us to see all the notes that belong to a specific user.
Next, we'll make some changes in the NoteController
.
Last updated