#7987467 method report file not implemented

This commit is contained in:
ai.astrakhantsev 2022-12-07 10:57:23 +05:00
parent aaa5627680
commit ae9ee705b0

View File

@ -58,7 +58,8 @@ namespace AsbCloudWebApi.Controllers
/// <exception cref="NotImplementedException"></exception>
[HttpGet]
[Route("{wellId}")]
public IActionResult GetReportFileAsync(int wellId)
[ProducesResponseType(typeof(PhysicalFileResult), (int)System.Net.HttpStatusCode.OK)]
public Task<IActionResult> GetReportFileAsync(int wellId)
{
throw new NotImplementedException();
}