public async Task <ActionResult <TorrentDTO> > AddTorrent(TorrentDTO torrent) { try { return(new OkObjectResult(await _movieService.AddTorrent(torrent))); } catch { return(new StatusCodeResult(500)); } }