2023-10-12 16:03:34 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Services;
|
2023-10-16 13:45:29 +05:00
|
|
|
|
using AsbCloudWebApi.SignalR;
|
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
2023-10-12 16:03:34 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.Controllers.ProcessMaps;
|
|
|
|
|
|
2023-10-19 10:31:28 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК проработки скважины
|
|
|
|
|
/// </summary>
|
2023-10-12 16:03:34 +05:00
|
|
|
|
public class ProcessMapWellReamController : ProcessMapBaseController<ProcessMapPlanWellReamDto>
|
|
|
|
|
{
|
|
|
|
|
public ProcessMapWellReamController(IWellService wellService,
|
|
|
|
|
IProcessMapPlanRepository<ProcessMapPlanWellReamDto> repository,
|
|
|
|
|
IUserRepository userRepository,
|
2023-10-16 13:45:29 +05:00
|
|
|
|
ICrudRepository<WellSectionTypeDto> wellSectionRepository,
|
|
|
|
|
IHubContext<TelemetryHub> telemetryHubContext,
|
|
|
|
|
ITelemetryService telemetryService)
|
|
|
|
|
: base(wellService, repository, userRepository, wellSectionRepository, telemetryHubContext, telemetryService)
|
2023-10-12 16:03:34 +05:00
|
|
|
|
{
|
|
|
|
|
}
|
2023-10-16 13:45:29 +05:00
|
|
|
|
|
2023-10-19 10:31:28 +05:00
|
|
|
|
public override string SignalRMethod => "ProccessMapWellReam";
|
2023-10-12 16:03:34 +05:00
|
|
|
|
}
|