using DaSaSo.Domain.Model; using DaSaSo.ViewModel.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.ViewModel.State.ActualState { public class ActualProject : IActualProject { public Client AktuellClient { get; private set; } public Buildingsite AktuellBaustelle { get; private set; } public Project AktuellProjekt { get; private set; } public void SetClient(Client client) { AktuellClient = client; } } }