This commit is contained in:
Michal Bohdanowicz 2021-01-10 21:37:28 +01:00
parent de1cb296d3
commit 138ef1b7af

View File

@ -31,6 +31,7 @@ namespace InternshipSystem.Api.Controllers
.Collection(e => e.Internships)
.Query()
.Include(i => i.Report)
.Include(i => i.Documentation)
.SingleAsync(i => i.Student.Id == user.PersonNumber, ct);
internship.Report.UpdateReport(reportValue.ToString(Formatting.None));