CS2-64: Ordered returning dtos by DepthPlan value.

This commit is contained in:
KharchenkoVV 2021-08-23 17:31:08 +05:00
parent a0856fad25
commit a2cb8071c8

View File

@ -106,7 +106,7 @@ namespace AsbCloudInfrastructure.Services
dtos.Add(dto);
}
return dtos;
return dtos.OrderBy(d => d.WellDepthPlan);
}
public async Task<WellSectionDto> GetSectionByWellIdAsync(int id, CancellationToken token = default)