CheckListService extending

This commit is contained in:
2025-03-28 19:25:35 +01:00
parent 77796f3247
commit d3bfeadc50
@@ -403,6 +403,7 @@ namespace WorkFlowCheck.BL.Services
if (checkListRow != null) if (checkListRow != null)
{ {
checkListRow.Answer = checkListRowDTO.Answer; checkListRow.Answer = checkListRowDTO.Answer;
checkListRow.Photo = checkListRowDTO.Photo;
await _dbContext.SaveChangesAsync(); await _dbContext.SaveChangesAsync();
retVal = _mapper.Map<CheckListRowDTO>(checkListRow); retVal = _mapper.Map<CheckListRowDTO>(checkListRow);
} }