feat(api): В респонс RobotTaskScheduleSchResponse добавлено поле TypeCode

This commit is contained in:
Mikhail Trubnikov
2023-10-12 09:44:44 +10:00
parent 494441dbe6
commit c2c381896b
3 changed files with 10 additions and 0 deletions

View File

@@ -29,5 +29,13 @@ namespace PARR.DAL.Services.Implementations
.ThenInclude(t => t!.EsppSchTypeValues)
.ThenInclude(t => t!.EsppSchValues);
}
//public IQueryable<EsppSchTypeConfig> GetScheduleByAppInWorks(Guid applicationInWorksId)
//{
// var configs = GetWithSchIncludes()
// .Where(t => t.EsppSchValues.Any(x => x.ApplicationsInWorkId == applicationInWorksId))
// .ToList();
//}
}
}