Иерархический список в плановых и фактических операциях

This commit is contained in:
Olga Nemt 2023-04-11 09:25:35 +05:00
parent 577b699663
commit 9e9e7a6f5a

View File

@ -58,7 +58,7 @@ namespace AsbCloudWebApi.Controllers
[ProducesResponseType(typeof(IEnumerable<WellOperationCategoryDto>), (int)System.Net.HttpStatusCode.OK)]
public IActionResult GetCategories()
{
var result = operationRepository.GetCategories(false);
var result = operationRepository.GetCategories(true);
return Ok(result);
}