public HomeController(ApplicationDbContext context,
                       UserManager <ApplicationUser> userManager,
                       IWebNoteService webNoteService)
 {
     _context        = context;
     _userManager    = userManager;
     _webNoteService = webNoteService;
 }