rename WellOperationController.GetAllAsync(..) to GetOperationsAsync(..)

This commit is contained in:
Фролов 2021-08-18 17:25:40 +05:00
parent 154426a5fb
commit a685418cf0

View File

@ -54,7 +54,7 @@ namespace AsbCloudWebApi.Controllers
/// <returns>Список операций на скважине в контейнере для постраничного просмотра</returns>
[HttpGet]
[ProducesResponseType(typeof(PaginationContainer<WellOperationDto>), (int)System.Net.HttpStatusCode.OK)]
public async Task<IActionResult> GetAllAsync(
public async Task<IActionResult> GetOperationsAsync(
int idWell,
int? opertaionType = default,
[FromQuery] IEnumerable<int> sectionTypeIds = default,