예제 #1
0
 public HomeController(NotepadContext context)
 {
     _context = context;
 }
예제 #2
0
 public NotesController(NotepadContext mContext, IMediator mediator, UserManager <User> userManager)
 {
     context      = mContext;
     _mediator    = mediator;
     _userManager = userManager;
 }
예제 #3
0
 public UpdateNoteHandler(NotepadContext context)
 {
     _context = context;
 }
예제 #4
0
 public NotepadController(NotepadContext db)
 {
     _db = db;
 }
예제 #5
0
 public DeleteNoteHandler(NotepadContext context)
 {
     _context = context;
 }