2023-10-12 16:03:34 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Services;
|
2023-12-04 17:12:28 +05:00
|
|
|
|
using AsbCloudApp.Services.ProcessMaps;
|
2023-10-16 13:45:29 +05:00
|
|
|
|
using AsbCloudWebApi.SignalR;
|
2023-10-30 12:13:38 +05:00
|
|
|
|
using AsbCloudWebApi.SignalR.Clients;
|
2023-10-16 13:45:29 +05:00
|
|
|
|
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>
|
|
|
|
|
{
|
2023-12-04 17:12:28 +05:00
|
|
|
|
public ProcessMapWellReamController(IWellService wellService,
|
|
|
|
|
IProcessMapPlanRepository<ProcessMapPlanWellReamDto> repository,
|
|
|
|
|
IUserRepository userRepository,
|
|
|
|
|
ICrudRepository<WellSectionTypeDto> wellSectionRepository,
|
|
|
|
|
IHubContext<TelemetryHub, ITelemetryHubClient> telemetryHubContext,
|
|
|
|
|
ITelemetryService telemetryService,
|
|
|
|
|
IProcessMapPlanService<ProcessMapPlanWellReamDto> service)
|
|
|
|
|
: base(wellService, repository, userRepository, wellSectionRepository, telemetryHubContext, telemetryService, service)
|
|
|
|
|
{
|
|
|
|
|
}
|
2023-10-16 13:45:29 +05:00
|
|
|
|
|
2023-12-04 17:12:28 +05:00
|
|
|
|
protected override string SignalRGroup => "ProcessMapWellReam";
|
2023-10-12 16:03:34 +05:00
|
|
|
|
}
|