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