public IActionResult GetDashboardPlaylist()
 {
     try
     {
         var playlistModel = Request.Form["getDashboardPlaylistModel"];
         GetDashboardPlaylistModel getDashboardPlaylistModel = JsonConvert.DeserializeObject <GetDashboardPlaylistModel>(playlistModel);
         return(Ok(_iDashboardService.GetAllPlayList(getDashboardPlaylistModel)));
     }
     catch (Exception ex)
     {
         _iLogger.LogCritical($"Exception while deleting a user", ex);
         return(StatusCode(500, "A problem happened while handling your request"));
     }
 }