Пример #1
0
 public async Task <IActionResult> Get()
 {
     try
     {
         return(Ok(await _repo.GetAllPlayList()));
     }
     catch (Exception ex)
     {
         return(StatusCode(500, ex));
     }
 }