Files
DaSaSo/DaSaSo.ViewModel/Interface/IWindowService.cs
2021-09-17 13:32:07 +02:00

14 lines
257 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel.Interface
{
public interface IWindowService
{
void ShowWindow<T>(object DataContext);
}
}