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