using AsbCloudApp.Data.SAUB;
using AsbCloudApp.Services;
using AsbCloudWebApi.SignalR;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.SignalR;
namespace AsbCloudWebApi.Controllers.SAUB
{
///
/// Наработка талевого каната
///
[ApiController]
[Authorize]
[Route("api/[controller]")]
public class TelemetryWirelineRunOutController : TelemetryInstantDataController
{
protected override string SirnalRMethodGetDataName => "ReceiveWirelineRunOut";
public TelemetryWirelineRunOutController(
ITelemetryService telemetryService,
IWellService wellService,
IHubContext telemetryHubContext,
InstantDataRepository repository)
: base(telemetryService, wellService, telemetryHubContext, repository)
{
}
}
}