public EfCoreNotebookRepository(NoteSystemDbContext noteSystemDbContext)
 {
     _noteSystemDbContext = noteSystemDbContext;
 }
 public EfCoreNotebookRepository(DbContextOptions contextOptions)
 {
     _noteSystemDbContext = new NoteSystemDbContext(contextOptions);
 }