16 lines
370 B
C#
16 lines
370 B
C#
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);
|
|
}
|
|
}
|