17 lines
481 B
C#
17 lines
481 B
C#
namespace RobotApp.Services.Robot.Actions;
|
|
|
|
public class RobotDockToAction(IServiceProvider ServiceProvider) : RobotAction(ServiceProvider)
|
|
{
|
|
protected override Task StartAction()
|
|
{
|
|
Status = VDA5050.State.ActionStatus.FINISHED;
|
|
ResultDescription = AgvAction is null ? ResultDescription : AgvAction.ResultDescription;
|
|
return base.StartAction();
|
|
}
|
|
|
|
protected override Task ExecuteAction()
|
|
{
|
|
return base.ExecuteAction();
|
|
}
|
|
}
|