# Conflicts: # BeWo/BeWo.csproj # BeWo/BeWoApp.xaml.cs # BeWo/ServiceProxy/GeneratedAiEnhancedService.cs # BeWo/Services/BeWoControlFactory.cs # BeWo/Services/BeWoWindowFactory.cs # BeWo/Services/BeWoWindowService.cs # BeWo/Services/IControlFactory.cs # BeWo/Services/IWindowFactory.cs # BeWo/Services/IWindowService.cs # BeWo/View/BeWoFileView.xaml # BeWo/View/Detail/Report/AbwesenheitsView.xaml # BeWo/View/Windows/AnimatedBeWoWindow.xaml.cs # BeWo/app.config # BeWoAllReports.sln # BeWoPlanerMobil.sln # BeWoPlanerMobil/.vs/BeWoPlanerMobil.csproj.dtbcache.json # BeWoTests.sln # Dakota/DakotaUtils.cs # Dakota/Logic/DakotaInfoCreator.cs # Dakota/Models/DakotaFile.cs # Data/Access/GenericDAO.cs # Data/Access/SearchDAO.cs # Data/Data.csproj # Host/Web.config # Server/Components/ServerUtils/ApiFacade/WebClientFacade.cs # Service/BeWoServiceEnums.cs # Service/Core/ServiceHelper.cs # Service/Core/ServiceValidator.cs # Service/Extensions/ServiceEnumExtension.cs # Service/Service.csproj # Service/ServiceContracts/Enhanced/IAiEnhancedService.cs # Service/ServiceContracts/Enhanced/IOperationsEnhancedService.cs # Service/ServiceImplementations/EmployeeServiceImp.cs # Service/ServiceImplementations/Enhanced/AiEnhancedServiceImp.cs # Service/ServiceImplementations/Enhanced/OperationsEnhancedServiceImp.cs # Service/ServiceProxy/OpenWebUIFacade.cs # Service/ServiceProxy/ServiceFacade.cs # Service/ServiceUtils/DistanceCalculator/GoogleDistanceMatrixAPI.cs # Shared/BeWoEntityEnums.cs # Shared/Core/AppError.cs # Shared/Core/Facade/WebClientFacade.cs # Shared/Core/WebClientFacade.cs # Shared/Shared.csproj
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using BeWo.ViewModel;
|
|
using BeWo.ViewModel.Light;
|
|
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 IWindowService
|
|
{
|
|
#region special
|
|
void ShowAiConversationWindow(AiConversationChatViewModel viewModel);
|
|
void ShowAiConversationModalViewWindow(AiConversationChatViewModel viewModel);
|
|
|
|
void ShowAiPromptbausteinDetailWindow(AiPromptbausteinDetailViewModel viewModel);
|
|
void ShowAiPromptbausteinSelectionWindow(AiPromptbausteinSelectionViewModel viewModel);
|
|
|
|
void ShowGkvAbrechnungDetailWindow(GkvAbrechnungDialogViewModel viewModel);
|
|
#endregion
|
|
|
|
#region base extended
|
|
void ShowERechnungWindow(MemoryStream pdf);
|
|
void ShowERechnungModalViewWindow(MemoryStream pdf);
|
|
#endregion
|
|
|
|
#region base
|
|
void ShowTextViewerWindow(string title, string text);
|
|
void ShowPdfViewerWindow(string title, MemoryStream pdf);
|
|
|
|
void ShowPdfViewerModalViewWindow(string title, MemoryStream pdf);
|
|
#endregion
|
|
}
|
|
}
|