Merge branch 'work-group-2' into dev
This commit is contained in:
@@ -27,7 +27,7 @@ namespace PARR.DAL.Services.Implementations
|
||||
public async Task<Template?> GetTemplateByNameAsync(string name)
|
||||
{
|
||||
return await GetWithIncludes()
|
||||
.Include(t=>t.RobotConfigurations)
|
||||
.Include(t => t.RobotConfigurations)
|
||||
.FirstOrDefaultAsync(t => t.Name == name);
|
||||
}
|
||||
|
||||
@@ -36,6 +36,8 @@ namespace PARR.DAL.Services.Implementations
|
||||
return Get()
|
||||
.Include(h => h.Host)
|
||||
.ThenInclude(t => t!.ResponseArea)
|
||||
.Include(h => h.Host)
|
||||
.ThenInclude(t => t!.WorkGroupItem)
|
||||
.Include(h => h.Host)
|
||||
.ThenInclude(t => t!.EkStatus)
|
||||
.Include(a => a.ApplicationsInWork)
|
||||
|
||||
Reference in New Issue
Block a user