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