19 lines
426 B
C#
19 lines
426 B
C#
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;
|
|
// TODO: ProjektID set entfernen!
|
|
int ProjektID { get; set; }
|
|
|
|
void SetProjekt(Projekt projekt, bool notification = true);
|
|
}
|
|
}
|