public IActionResult Delete(long id)
 {
     catalogueService.Delete(id);
     return(RedirectToAction("GetAll"));
 }