public IActionResult Delete(Album alb)
 {
     _albumsService.DeleteAlbum(alb.AlbumId);
     return(RedirectToAction("Index", "Home"));
 }