Verzeichnisse umgeräumt
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SewerStammGen.WPF.Interface.Navigator
|
||||
{
|
||||
public interface IMainWindowNavigator : INavigator
|
||||
{
|
||||
}
|
||||
}
|
||||
19
SewerStammGen.WPF/Interface/Navigator/INavigator.cs
Normal file
19
SewerStammGen.WPF/Interface/Navigator/INavigator.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using SewerStammGen.WPF.ViewModel;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SewerStammGen.WPF.Interface.Navigator
|
||||
{
|
||||
public interface INavigator
|
||||
{
|
||||
BaseViewModel CurrentViewModel
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
event Action StateChanged;
|
||||
}
|
||||
}
|
||||
13
SewerStammGen.WPF/Interface/Navigator/IRenavigator.cs
Normal file
13
SewerStammGen.WPF/Interface/Navigator/IRenavigator.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SewerStammGen.WPF.Interface.Navigator
|
||||
{
|
||||
public interface IRenavigator
|
||||
{
|
||||
void Renavigate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user