Exemple #1
0
 public IActionResult DeleteTopic(int topicId, int categoryId)
 {
     try
     {
         _categoriesRepository.DeleteTopic(topicId, categoryId);
         TempData["success"] = "Temat został usunięty.";
     }
     catch (MrRollException)
     {
         TempData["error"] = "Operacja zakończona niepowodzeniem.";
     }
     return(RedirectToAction("Index"));
 }