qwen edit

This commit is contained in:
Курнат Андрей
2026-02-18 14:36:57 +03:00
parent 8cb459c832
commit 1d9224a025
13 changed files with 292 additions and 45 deletions

View File

@@ -13,6 +13,7 @@ public partial class CalibreLibraryViewModel : BaseViewModel
private readonly IDatabaseService _databaseService;
private readonly ISettingsService _settingsService;
private readonly INavigationService _navigationService;
private readonly ICachedImageLoadingService _imageLoadingService;
public ObservableCollection<CalibreBook> Books { get; } = new();
@@ -32,13 +33,15 @@ public partial class CalibreLibraryViewModel : BaseViewModel
IBookParserService bookParserService,
IDatabaseService databaseService,
ISettingsService settingsService,
INavigationService navigationService)
INavigationService navigationService,
ICachedImageLoadingService imageLoadingService)
{
_calibreWebService = calibreWebService;
_bookParserService = bookParserService;
_databaseService = databaseService;
_settingsService = settingsService;
_navigationService = navigationService;
_imageLoadingService = imageLoadingService;
Title = "Calibre Library";
}