2023-11-28 15:54:47 +05:00
|
|
|
|
using AsbCloudApp.Data.Trajectory;
|
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
using AsbCloudInfrastructure.Services.Trajectory.Export;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.Controllers.Trajectory;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Фактическая траектория из ННБ
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Authorize]
|
|
|
|
|
[ApiController]
|
|
|
|
|
[Route("api/well/{idWell}/[controller]")]
|
|
|
|
|
public class TrajectoryFactNnbController : TrajectoryController<TrajectoryGeoFactDto>
|
|
|
|
|
{
|
2023-12-05 14:48:56 +05:00
|
|
|
|
protected override string fileName => "ЕЦП_шаблон_файла_фактическая_ннб_траектория.xlsx";
|
2023-11-28 15:54:47 +05:00
|
|
|
|
public TrajectoryFactNnbController(
|
|
|
|
|
ITrajectoryNnbRepository trajectoryNnbRepository,
|
|
|
|
|
TrajectoryFactNnbExportService trajectoryExportService,
|
|
|
|
|
IWellService wellService)
|
|
|
|
|
: base(
|
|
|
|
|
wellService,
|
|
|
|
|
trajectoryExportService,
|
|
|
|
|
trajectoryNnbRepository)
|
2023-12-05 14:48:56 +05:00
|
|
|
|
{ }
|
2023-11-28 15:54:47 +05:00
|
|
|
|
}
|