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