forked from ddrilling/AsbCloudServer
27 lines
870 B
C#
27 lines
870 B
C#
|
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
|
|||
|
{
|
|||
|
[ApiController]
|
|||
|
[Authorize]
|
|||
|
[Route("api/[controller]")]
|
|||
|
public class TelemetryWirelineRunOutController : TelemetryInstantDataController<TelemetryWirelineRunOutDto>
|
|||
|
{
|
|||
|
protected override string SirnalRMethodGetDataName => "ReceiveWirelineRunOut";
|
|||
|
public TelemetryWirelineRunOutController(
|
|||
|
ITelemetryService telemetryService,
|
|||
|
IWellService wellService,
|
|||
|
IHubContext<TelemetryHub> telemetryHubContext,
|
|||
|
InstantDataRepository repository)
|
|||
|
: base(telemetryService, wellService, telemetryHubContext, repository)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|