Метод GetByTelemetry контроллера ProcessMapController возвращает путсую коллекцию

This commit is contained in:
Olga Nemt 2023-06-30 17:31:11 +05:00
parent bb8b530cbf
commit 60f024ed25

View File

@ -7,6 +7,7 @@ using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.SignalR; using Microsoft.AspNetCore.SignalR;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -60,8 +61,8 @@ namespace AsbCloudWebApi.Controllers
var idWell = telemetryService.GetIdWellByTelemetryUid(uid); var idWell = telemetryService.GetIdWellByTelemetryUid(uid);
if (idWell is null) if (idWell is null)
return BadRequest($"Wrong uid {uid}"); return BadRequest($"Wrong uid {uid}");
#warning implement Process map get method
throw new NotImplementedException(); return Ok(Enumerable.Empty<ProcessMapPlanDto>());
} }
/// <summary> /// <summary>