Projekte können erstellt und geladen werden
This commit is contained in:
18
SewerStammGen/ViewModel/State/IActualState.cs
Normal file
18
SewerStammGen/ViewModel/State/IActualState.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Shared.Domain;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SewerStammGen.WPF.ViewModel.State
|
||||
{
|
||||
public interface IActualState
|
||||
{
|
||||
event EventHandler? ProjektChanged;
|
||||
|
||||
int ProjektID { get; }
|
||||
|
||||
void SetProjekt(Projekt projekt, bool notification = true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user