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 GetInspektionsobjekt(Bauvorhaben bauvorhaben); } }