You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
844 B
25 lines
844 B
1 year ago
|
using FluentAvalonia.UI.Controls;
|
||
|
using StabilityMatrix.Avalonia.ViewModels.Dialogs;
|
||
|
using StabilityMatrix.Avalonia.Views.Dialogs;
|
||
|
using StabilityMatrix.Core.Models.Api;
|
||
|
using StabilityMatrix.Core.Services;
|
||
|
|
||
|
namespace StabilityMatrix.Avalonia.Services;
|
||
|
|
||
|
public class DialogFactory : IDialogFactory
|
||
|
{
|
||
|
private readonly ISettingsManager settingsManager;
|
||
|
private readonly IDownloadService downloadService;
|
||
|
|
||
|
public DialogFactory(ISettingsManager settingsManager, IDownloadService downloadService)
|
||
|
{
|
||
|
this.settingsManager = settingsManager;
|
||
|
this.downloadService = downloadService;
|
||
|
}
|
||
|
|
||
|
public SelectModelVersionViewModel CreateSelectModelVersionViewModel(CivitModel model, ContentDialog dialog)
|
||
|
{
|
||
|
return new SelectModelVersionViewModel(model, dialog, settingsManager, downloadService);
|
||
|
}
|
||
|
}
|