mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
Add AddonChannelType Add Database migration service Images less jaggedy Fix bug with tukui from Get Addons page Improve context menu UI
21 lines
480 B
C#
21 lines
480 B
C#
using WowUp.WPF.Repositories.Base;
|
|
using WowUp.WPF.Repositories.Contracts;
|
|
using WowUp.WPF.Services.Contracts;
|
|
|
|
namespace WowUp.WPF.Services
|
|
{
|
|
public class MigrationService : IMigrationService
|
|
{
|
|
public MigrationService(
|
|
IAddonRepository addonRepository,
|
|
IPreferenceRepository preferenceRepository)
|
|
{
|
|
}
|
|
|
|
public void MigrateDatabase()
|
|
{
|
|
new BaseRepository().MigrateDatabase();
|
|
}
|
|
}
|
|
}
|