Exemple #1
0
 public NotebookCommentController(SchoolNotebookContext context)
 {
     _context         = context;
     _notebookService = new NotebookService(_context);
 }
 public ReminderNoteController(SchoolNotebookContext context)
 {
     _context = context;
 }
 public BookmarkController(SchoolNotebookContext context)
 {
     _context = context;
 }
Exemple #4
0
 public UserController(IConfiguration configuration, SchoolNotebookContext context)
 {
     _configugartion = configuration;
     _context        = context;
 }
 public NotebookController(SchoolNotebookContext context, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _notebookService    = new NotebookService(_context);
     _hostingEnvironment = hostingEnvironment;
 }