Durchlaufene Menu erzeugt

This commit is contained in:
HuskyTeufel
2022-05-30 17:04:24 +02:00
parent 455f57fd35
commit 7bf5d1ad05
16 changed files with 303 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DichtheitManagement.Contract
{
public interface IInspektionsObjectManager
{
void Add(Inspektionsobjekt inspektionsobjekt);
List<Inspektionsobjekt> GetInspektionsobjekt(Bauvorhaben bauvorhaben);
}
}