Baustellenmanager

This commit is contained in:
Husky
2021-02-27 12:20:10 +01:00
parent 746353e54e
commit c581f5e198
4 changed files with 24 additions and 5 deletions

View File

@@ -1,9 +1,12 @@
using DataStoring.Contract;
using DichtheitManagement.Contract;
using Models;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
namespace DichtheitManagement
@@ -21,7 +24,7 @@ namespace DichtheitManagement
public IQueryable<Bauvorhaben> GetAllBauvorhaben()
{
return _repository.Query;
return _repository.Get(includeProperties: "Auftraggeber");
}
}
}