43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using BeWo.ViewModel;
|
|
using BeWo.ViewModel.Light;
|
|
using BeWo.ViewModel.View;
|
|
using BeWo.ViewModel.View.Administration;
|
|
using BeWo.ViewModel.View.AI;
|
|
using BeWo.ViewModel.View.Dialogs;
|
|
using BS.Shared;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace BeWo.Services
|
|
{
|
|
public interface IBeWoWindowService
|
|
{
|
|
#region special
|
|
void ShowAiConversationWindow(AiConversationChatViewModel viewModel);
|
|
void ShowAiPromptbausteinDetailWindow(AiPromptbausteinDetailViewModel viewModel);
|
|
|
|
void ShowAiPromptbausteinSelectionWindow(AiPromptbausteinSelectionViewModel viewModel);
|
|
|
|
void ShowGkvAbrechnungDetailWindow(GkvAbrechnungDialogViewModel vm);
|
|
#endregion
|
|
|
|
#region base extended
|
|
void ShowERechnungWindow(MemoryStream pdf);
|
|
#endregion
|
|
|
|
#region base
|
|
void ShowTextViewerWindow(string title, string text, BeWoWindowOptions pOptions = null);
|
|
void ShowPdfViewerWindow(string title, MemoryStream pdf, BeWoWindowOptions pOptions = null);
|
|
#endregion
|
|
|
|
void Show<T>(T windowViewModel) where T : WindowViewModel;
|
|
}
|
|
}
|