WPF hinzugefügt

This commit is contained in:
Husky
2021-02-26 18:31:57 +01:00
parent 6761b17f4d
commit 746353e54e
34 changed files with 1261 additions and 37 deletions

View File

@@ -0,0 +1,14 @@
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DichtheitManagement.Contract
{
public interface IBaustelleManager
{
IQueryable<Bauvorhaben> GetAllBauvorhaben();
void Add(Bauvorhaben bauvorhaben);
}
}