forked from ddrilling/AsbCloudServer
26 lines
909 B
C#
26 lines
909 B
C#
using AsbCloudApp.Data;
|
||
using AsbCloudApp.Repositories;
|
||
using AsbCloudApp.Services;
|
||
using AsbCloudInfrastructure.Services.Trajectory;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
|
||
namespace AsbCloudWebApi.Controllers.Trajectory;
|
||
|
||
/// <summary>
|
||
/// Фактическая траектория
|
||
/// </summary>
|
||
[ApiController]
|
||
[Route("api/well/{idWell}/[controller]")]
|
||
public class FactTrajectoryController : TrajectoryController<TrajectoryGeoFactDto>
|
||
{
|
||
public FactTrajectoryController(IWellService wellService,
|
||
FactTrajectoryImportService factTrajectoryImportService,
|
||
ITrajectoryEditableRepository<TrajectoryGeoFactDto> trajectoryFactRepository)
|
||
: base(
|
||
wellService,
|
||
factTrajectoryImportService,
|
||
trajectoryFactRepository)
|
||
{
|
||
fileName = "ЕЦП_шаблон_файла_фактическая_траектория.xlsx";
|
||
}
|
||
} |