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