修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
7927ad4161
commit
5725e684c0
|
|
@ -506,6 +506,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
public CriterionType CriterionType { get; set; }
|
public CriterionType CriterionType { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class GetReportsChartSummaryOutDto
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public class GetReportsChartDataInDto
|
public class GetReportsChartDataInDto
|
||||||
{
|
{
|
||||||
public Guid VisitTaskId { get; set; }
|
public Guid VisitTaskId { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -432,8 +432,9 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="inDto"></param>
|
/// <param name="inDto"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task GetReportsChartSummary(GetReportsChartSummaryInDto inDto)
|
public async Task<GetReportsChartSummaryOutDto> GetReportsChartSummary(GetReportsChartSummaryInDto inDto)
|
||||||
{
|
{
|
||||||
|
var result= new GetReportsChartSummaryOutDto();
|
||||||
var r1Data = await GetData(new List<Arm>() { Arm.SingleReadingArm, Arm.DoubleReadingArm1 });
|
var r1Data = await GetData(new List<Arm>() { Arm.SingleReadingArm, Arm.DoubleReadingArm1 });
|
||||||
var r2Data = await GetData(new List<Arm>() { Arm.DoubleReadingArm2 });
|
var r2Data = await GetData(new List<Arm>() { Arm.DoubleReadingArm2 });
|
||||||
async Task<GetReadingReportEvaluationOutDto> GetData(List<Arm> arms)
|
async Task<GetReadingReportEvaluationOutDto> GetData(List<Arm> arms)
|
||||||
|
|
@ -457,6 +458,8 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue