This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
BetterRaid_OLD/Services/Implementations/MainWindowViewModelFactory.cs

21 lines
654 B
C#

using BetterRaid.ViewModels;
namespace BetterRaid.Services.Implementations;
public class MainWindowViewModelFactory// : IMainViewModelFactory
{
private readonly ITwitchService _twitchService;
private readonly ISynchronizaionService _synchronizaionService;
public MainWindowViewModelFactory(ITwitchService twitchService, ISynchronizaionService synchronizaionService)
{
_twitchService = twitchService;
_synchronizaionService = synchronizaionService;
}
//public MainWindowViewModel CreateMainWindowViewModel()
//{
// return new MainWindowViewModel(_twitchService, _synchronizaionService);
//}
}