Example #1
0
        public async Task <TorrentDTO> AddTorrent(TorrentDTO torrent)
        {
            Torrent newTorrent = _mapper.Map <Torrent>(torrent);
            await _torrentRepository.AddTorrent(newTorrent);

            return(torrent);
        }