public IActionResult AddCategory(string title)
 {
     _adminManager.AddCategory(title);
     return(RedirectToAction("Categories", "Admin"));
 }