2022-04-11 17:22:52 +05:00
|
|
|
|
using AsbCloudApp.Data.SAUB;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
using AsbCloudWebApi.SignalR;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
|
|
|
|
|
2022-04-11 18:00:34 +05:00
|
|
|
|
namespace AsbCloudWebApi.Controllers.SAUB
|
2022-04-11 17:22:52 +05:00
|
|
|
|
{
|
|
|
|
|
[ApiController]
|
|
|
|
|
[Authorize]
|
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
public class TelemetryWirelineRunOutController : TelemetryInstantDataController<TelemetryWirelineRunOutDto>
|
|
|
|
|
{
|
|
|
|
|
protected override string SirnalRMethodGetDataName => "ReceiveWirelineRunOut";
|
|
|
|
|
public TelemetryWirelineRunOutController(
|
2022-04-11 18:00:34 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
|
|
|
|
IWellService wellService,
|
|
|
|
|
IHubContext<TelemetryHub> telemetryHubContext,
|
|
|
|
|
InstantDataRepository repository)
|
2022-04-11 17:22:52 +05:00
|
|
|
|
: base(telemetryService, wellService, telemetryHubContext, repository)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|