2025-04-15 12:44:38 +02:00
|
|
|
|
using BeWo.View.Windows;
|
2025-05-27 13:04:52 +02:00
|
|
|
|
using BeWo.ViewModel;
|
2025-06-17 13:07:41 +02:00
|
|
|
|
using BeWo.ViewModel.Light;
|
2025-04-15 12:44:38 +02:00
|
|
|
|
using BS.Shared;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Services
|
|
|
|
|
|
{
|
|
|
|
|
|
internal interface IWindowFactory
|
|
|
|
|
|
{
|
2025-06-02 11:16:35 +02:00
|
|
|
|
AnimatedBeWoWindow GetAnimatedBeWoWindow(string title, Control control, double? height = null, double? width = null);
|
2025-05-27 09:24:12 +02:00
|
|
|
|
Control GetGenericModalViewWindow(string title, Control control, double? height = null, double? width = null);
|
2025-05-27 09:32:54 +02:00
|
|
|
|
|
|
|
|
|
|
string GetAiTitle(UIContext context);
|
2025-06-17 13:07:41 +02:00
|
|
|
|
string GetGkvTitle(GkvAbrechnungLightVM vm);
|
2025-04-15 12:44:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|