Files
DaSaSo/DaSaSo.ViewModel/Interface/IActualProject.cs
2021-09-14 19:08:55 +02:00

19 lines
401 B
C#

using DaSaSo.Domain.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DaSaSo.ViewModel.Interface
{
public interface IActualProject
{
Client AktuellClient { get; }
Project AktuellProjekt { get; }
Buildingsite AktuellBaustelle { get; }
void SetClient(Client client);
}
}