2024-11-10 23:28:25 +01:00
|
|
|
|
using Windows.UI.Xaml;
|
|
|
|
|
|
using Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
using Wino.Core.UWP.Services;
|
|
|
|
|
|
|
2025-05-18 14:06:25 +02:00
|
|
|
|
namespace Wino.Calendar.Services;
|
|
|
|
|
|
|
|
|
|
|
|
public class DialogService : DialogServiceBase, ICalendarDialogService
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
2025-05-18 14:06:25 +02:00
|
|
|
|
public DialogService(IThemeService themeService,
|
|
|
|
|
|
IConfigurationService configurationService,
|
|
|
|
|
|
IApplicationResourceManager<ResourceDictionary> applicationResourceManager) : base(themeService, configurationService, applicationResourceManager)
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|