Compare commits
No commits in common. "8272dc71d5363a25d3946f38632f06cd1910eb1e" and "1cf961c75def1cc4017d7e64bf91f422ecc752a8" have entirely different histories.
8272dc71d5
...
1cf961c75d
|
@ -591,8 +591,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public string OrderMarkName { get; set; } = string.Empty;
|
public string OrderMarkName { get; set; } = string.Empty;
|
||||||
|
|
||||||
public Guid? MarkId { get; set; }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class GetManualListInDto
|
public class GetManualListInDto
|
||||||
|
|
|
@ -3317,7 +3317,7 @@ namespace IRaCIS.Core.Infra.EFCore.Common
|
||||||
var liverSegmentation = await _dbContext.ReadingTableQuestionAnswer.Where(x => x.RowId == entity.RowId && x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.liverSegmentation).Select(x => x.Answer).FirstOrDefaultAsync();
|
var liverSegmentation = await _dbContext.ReadingTableQuestionAnswer.Where(x => x.RowId == entity.RowId && x.ReadingTableQuestionTrial.QuestionMark == QuestionMark.liverSegmentation).Select(x => x.Answer).FirstOrDefaultAsync();
|
||||||
|
|
||||||
var generalId=new Guid();
|
var generalId=new Guid();
|
||||||
if (entity.MarkId != null)
|
if (entity.MarkId != null)
|
||||||
{
|
{
|
||||||
generalId = entity.MarkId.Value;
|
generalId = entity.MarkId.Value;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue