Beispiel #1
0
        public void CreateNote(Note note)
        {
            if (note == null)
            {
                throw new ArgumentNullException(nameof(note));
            }

            _context.Add(note);
        }
Beispiel #2
0
 public void AddEntity(Note note)
 {
     _notesContext.Add(note);
 }