예제 #1
0
 public async Task <bool> DownloadMangaWithSpecifyFolderAsync(Manga manga)
 {
     return(await _dataService.DownloadMangaWithSpecifyFolderAsync(manga));
 }
예제 #2
0
 public async Task <bool> DownloadMangaWithSpecifyFolderAsync(Manga manga, List <Chapter> chapters)
 {
     return(await _dataService.DownloadMangaWithSpecifyFolderAsync(manga, chapters));
 }
예제 #3
0
 public async Task <Uri> GetMangaImageUri(Manga manga)
 {
     return(await _dataService.GetMangaCoverUri(manga));
 }