DrillTestSReportController переименован в DrillTestReportController

This commit is contained in:
Olga Nemt 2023-10-20 15:44:51 +05:00
parent 85086e7206
commit 1552cc4576

View File

@ -18,12 +18,12 @@ namespace AsbCloudWebApi.Controllers;
[ApiController]
[Route("api/well/{idWell}/[controller]")]
[Authorize]
public class DrillTestsReportController : ControllerBase
public class DrillTestReportController : ControllerBase
{
private readonly IDrillTestReportService drillTestReportService;
private readonly IWellService wellService;
public DrillTestsReportController(IDrillTestReportService drillTestReportService,
public DrillTestReportController(IDrillTestReportService drillTestReportService,
IWellService wellService)
{
this.drillTestReportService = drillTestReportService;