Example #1
0
 public HomeController(
     INotesServices notes,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.notes     = notes;
     this.records   = records;
     this.documents = documents;
     this.users     = users;
 }
 public HomeController(
     INotesServices notes,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.notes = notes;
     this.records = records;
     this.documents = documents;
     this.users = users;
 }
Example #3
0
 public NotesController(ILogger <NotesController> logger, INotesServices notesServices)
 {
     _logger        = logger;
     _notesServices = notesServices;
 }
 public NotesController(ILogger <NotesController> logger, INotesServices notesSerives, AppDbContext context)
 {
     _logger       = logger;
     _notesSerives = notesSerives;
     _context      = context;
 }
 public NotesController(INotesServices noteService)
 {
     _noteService = noteService;
 }
Example #6
0
 public NotesController(INotesServices notesServices, SignInManager <User> signInManager)
 {
     _notesServices = notesServices;
     _signInManager = signInManager;
 }
Example #7
0
 public NotesController(INotesServices notes)
 {
     this.notes = notes;
 }
 public NotesController(INotesServices notes)
 {
     this.notes = notes;
 }